public static enum AbstractStateDescriptor.StateType extends Enum<AbstractStateDescriptor.StateType>
| Enum Constant and Description |
|---|
LIST
list state
|
MAP
map state
|
VALUE
value state
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractStateDescriptor.StateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractStateDescriptor.StateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractStateDescriptor.StateType VALUE
public static final AbstractStateDescriptor.StateType LIST
public static final AbstractStateDescriptor.StateType MAP
public static AbstractStateDescriptor.StateType[] values()
for (AbstractStateDescriptor.StateType c : AbstractStateDescriptor.StateType.values()) System.out.println(c);
public static AbstractStateDescriptor.StateType 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 nullCopyright © 2020. All rights reserved.