public enum PrereleaseFeatures extends java.lang.Enum<PrereleaseFeatures>
| Enum Constant and Description |
|---|
NOT_ALLOWED
not Allowed
|
SETTINGS_AND_EXPERIMENTATIONS
settings And Experimentations
|
SETTINGS_ONLY
settings Only
|
UNEXPECTED_VALUE
For PrereleaseFeatures values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static PrereleaseFeatures |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrereleaseFeatures[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrereleaseFeatures USER_DEFINED
public static final PrereleaseFeatures SETTINGS_ONLY
public static final PrereleaseFeatures SETTINGS_AND_EXPERIMENTATIONS
public static final PrereleaseFeatures NOT_ALLOWED
public static final PrereleaseFeatures UNEXPECTED_VALUE
public static PrereleaseFeatures[] values()
for (PrereleaseFeatures c : PrereleaseFeatures.values()) System.out.println(c);
public static PrereleaseFeatures 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