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