protected static enum GraphKit.IfState extends Enum<GraphKit.IfState>
Enum Constant and Description |
---|
CONDITION |
ELSE_PART |
FINISHED |
THEN_PART |
Modifier and Type | Method and Description |
---|---|
static GraphKit.IfState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphKit.IfState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphKit.IfState CONDITION
public static final GraphKit.IfState THEN_PART
public static final GraphKit.IfState ELSE_PART
public static final GraphKit.IfState FINISHED
public static GraphKit.IfState[] values()
for (GraphKit.IfState c : GraphKit.IfState.values()) System.out.println(c);
public static GraphKit.IfState 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 null