public static enum Embrace.AppFramework extends java.lang.Enum<Embrace.AppFramework>
| Enum Constant and Description |
|---|
NATIVE |
REACT_NATIVE |
UNITY |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static Embrace.AppFramework |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Embrace.AppFramework[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Embrace.AppFramework NATIVE
public static final Embrace.AppFramework REACT_NATIVE
public static final Embrace.AppFramework UNITY
public static Embrace.AppFramework[] values()
for (Embrace.AppFramework c : Embrace.AppFramework.values()) System.out.println(c);
public static Embrace.AppFramework 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 nullpublic int getValue()