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