public enum ConfigurationState extends java.lang.Enum<ConfigurationState>
| Enum Constant and Description |
|---|
IN_PROGRESS
App is handling configuration or login change.
|
PAUSED
Paused state.
|
PENDING
Config / login received from platform while app is busy processing previous.
|
READY
Ready to process configuration or login
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationState READY
public static final ConfigurationState PAUSED
public static final ConfigurationState IN_PROGRESS
public static final ConfigurationState PENDING
public static ConfigurationState[] values()
for (ConfigurationState c : ConfigurationState.values()) System.out.println(c);
public static ConfigurationState 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