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