public enum StateManagementSetting extends java.lang.Enum<StateManagementSetting>
Enum Constant and Description |
---|
ALLOWED
allowed
|
BLOCKED
blocked
|
NOT_CONFIGURED
not Configured
|
UNEXPECTED_VALUE
For StateManagementSetting values that were not expected from the service
|
Modifier and Type | Method and Description |
---|---|
static StateManagementSetting |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StateManagementSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateManagementSetting NOT_CONFIGURED
public static final StateManagementSetting BLOCKED
public static final StateManagementSetting ALLOWED
public static final StateManagementSetting UNEXPECTED_VALUE
public static StateManagementSetting[] values()
for (StateManagementSetting c : StateManagementSetting.values()) System.out.println(c);
public static StateManagementSetting 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