public static enum EfficientTree.NodeType extends java.lang.Enum<EfficientTree.NodeType>
Enum Constant and Description |
---|
activity |
concurrent |
interleaved |
loop |
or |
sequence |
skip |
tau |
xor |
Modifier and Type | Field and Description |
---|---|
int |
code |
Modifier and Type | Method and Description |
---|---|
static EfficientTree.NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EfficientTree.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EfficientTree.NodeType tau
public static final EfficientTree.NodeType activity
public static final EfficientTree.NodeType xor
public static final EfficientTree.NodeType sequence
public static final EfficientTree.NodeType interleaved
public static final EfficientTree.NodeType concurrent
public static final EfficientTree.NodeType or
public static final EfficientTree.NodeType loop
public static final EfficientTree.NodeType skip
public static EfficientTree.NodeType[] values()
for (EfficientTree.NodeType c : EfficientTree.NodeType.values()) System.out.println(c);
public static EfficientTree.NodeType 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