public enum MoveDetectionType extends java.lang.Enum<MoveDetectionType>
Enum Constant and Description |
---|
RESTRICTED
This mode only detects moves at the roots of added or deleted subtrees.
|
UNRESTRICTED
This mode is used to detect moves anywhere in the tree.
|
Modifier and Type | Method and Description |
---|---|
static MoveDetectionType |
getMoveDetectionType(java.lang.String val) |
static MoveDetectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MoveDetectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoveDetectionType RESTRICTED
public static final MoveDetectionType UNRESTRICTED
public static MoveDetectionType[] values()
for (MoveDetectionType c : MoveDetectionType.values()) System.out.println(c);
public static MoveDetectionType 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 nullpublic static MoveDetectionType getMoveDetectionType(java.lang.String val)