Enum Constant and Description |
---|
CLEANUP |
EXPECT |
SETUP |
THEN |
WHEN |
WHERE |
Modifier and Type | Method and Description |
---|---|
static BlockKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockKind SETUP
public static final BlockKind EXPECT
public static final BlockKind WHEN
public static final BlockKind THEN
public static final BlockKind CLEANUP
public static final BlockKind WHERE
public static BlockKind[] values()
for (BlockKind c : BlockKind.values()) System.out.println(c);
public static BlockKind 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 nullCopyright © 2015. All rights reserved