public static enum Constants.SDKEvents extends java.lang.Enum<Constants.SDKEvents>
Enum Constant and Description |
---|
EVENT_BACKGROUND
event for application going background/pause
|
EVENT_FOREGROUND
event for application going foreground/resume
|
EVENT_RELEASE_CAMERA
event for releasing the camera
|
Modifier and Type | Method and Description |
---|---|
static Constants.SDKEvents |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.SDKEvents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.SDKEvents EVENT_BACKGROUND
public static final Constants.SDKEvents EVENT_FOREGROUND
public static final Constants.SDKEvents EVENT_RELEASE_CAMERA
public static Constants.SDKEvents[] values()
for (Constants.SDKEvents c : Constants.SDKEvents.values()) System.out.println(c);
public static Constants.SDKEvents valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null