public static enum ChokePoint.Node extends Enum<ChokePoint.Node>
Enum Constant and Description |
---|
END1 |
END2 |
MIDDLE |
NODE_COUNT |
Modifier and Type | Method and Description |
---|---|
static ChokePoint.Node |
valueOf(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(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 nullCopyright © 2022. All rights reserved.