This site has been permanently archived. The content on this site was last updated in 2019.
GvrApi.Error
Constants that represent GVR error codes.
Inherited Methods
From class
java.lang.Object
boolean
|
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
Constants
public
static
final
int
CONTROLLER_CREATE_FAILED
public
static
final
int
NONE
public
static
final
int
NO_FRAME_AVAILABLE
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-09 UTC.
[null,null,["Last updated 2024-10-09 UTC."],[[["`GvrApi.Error` provides constants representing GVR error codes, such as controller creation failure or frame unavailability."],["The constants include `CONTROLLER_CREATE_FAILED`, `NONE`, and `NO_FRAME_AVAILABLE`, with corresponding integer values."],["This abstract class inherits methods from `java.lang.Object`, like `equals`, `getClass`, `hashCode`, and others for basic object operations."],["Developers can use `GvrApi.Error` to handle and interpret different error scenarios encountered during VR interactions."]]],["`GvrApi.Error` is an abstract class containing constants representing GVR error codes. It defines three integer constants: `CONTROLLER_CREATE_FAILED` (value 2), `NONE` (value 0), and `NO_FRAME_AVAILABLE` (value 3). It also has a public constructor `GvrApi.Error()` and inherits several methods from `java.lang.Object`, like `equals`, `getClass`, `hashCode`, `toString`, and `wait`. The class's core function is to provide standardized error codes.\n"]]