public enum TreeBoxExampleType extends Enum<TreeBoxExampleType>
| Enum Constant and Description |
|---|
ENUMS |
NODES |
OBJECTS |
ROOT_NODE |
STRINGS |
TEMPLATE |
| Modifier and Type | Method and Description |
|---|---|
static TreeBoxExampleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeBoxExampleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeBoxExampleType ROOT_NODE
public static final TreeBoxExampleType NODES
public static final TreeBoxExampleType STRINGS
public static final TreeBoxExampleType ENUMS
public static final TreeBoxExampleType OBJECTS
public static final TreeBoxExampleType TEMPLATE
public final String label
public static TreeBoxExampleType[] values()
for (TreeBoxExampleType c : TreeBoxExampleType.values()) System.out.println(c);
public static TreeBoxExampleType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.