public static enum State.Chain extends java.lang.Enum<State.Chain>
| Enum Constant and Description |
|---|
PACKED |
SPREAD |
SPREAD_INSIDE |
| Modifier and Type | Method and Description |
|---|---|
static State.Chain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static State.Chain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State.Chain SPREAD
public static final State.Chain SPREAD_INSIDE
public static final State.Chain PACKED
public static State.Chain[] values()
for (State.Chain c : State.Chain.values()) System.out.println(c);
public static State.Chain 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