public static enum Operation.OperationType extends java.lang.Enum<Operation.OperationType>
Enum Constant and Description |
---|
addMinimalTree |
addNode |
addTree |
CorrectTree |
relabelNode |
removeNode |
removeTree |
replaceTree |
Modifier and Type | Method and Description |
---|---|
static Operation.OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operation.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.OperationType relabelNode
public static final Operation.OperationType addNode
public static final Operation.OperationType removeNode
public static final Operation.OperationType removeTree
public static final Operation.OperationType replaceTree
public static final Operation.OperationType addTree
public static final Operation.OperationType addMinimalTree
public static final Operation.OperationType CorrectTree
public static Operation.OperationType[] values()
for (Operation.OperationType c : Operation.OperationType.values()) System.out.println(c);
public static Operation.OperationType 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