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