public enum HybridAppPreference extends Enum<HybridAppPreference>
| Modifier and Type | Method and Description |
|---|---|
static HybridAppPreference |
valueForString(String value) |
static HybridAppPreference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HybridAppPreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HybridAppPreference MOBILE
public static final HybridAppPreference CLOUD
public static final HybridAppPreference BOTH
public static HybridAppPreference[] values()
for (HybridAppPreference c : HybridAppPreference.values()) System.out.println(c);
public static HybridAppPreference valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static HybridAppPreference valueForString(String value)