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