public enum DisplayNodeType extends java.lang.Enum<DisplayNodeType> implements ValueEnum
Enum Constant and Description |
---|
FOLDERS
operate on folders only, ignoring leaves
|
LEAVES
operate on leaves only, ignoring folders
|
NULL
operate on both folders and leaves
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static DisplayNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayNodeType NULL
public static final DisplayNodeType FOLDERS
public static final DisplayNodeType LEAVES
public static DisplayNodeType[] values()
for (DisplayNodeType c : DisplayNodeType.values()) System.out.println(c);
public static DisplayNodeType 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