public static enum TreeBuilder.RootNode extends Enum<TreeBuilder.RootNode>
| Enum Constant and Description |
|---|
NULL_ID
id is null
|
ZERO_ID
id is 0
|
| Modifier and Type | Method and Description |
|---|---|
static TreeBuilder.RootNode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeBuilder.RootNode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeBuilder.RootNode ZERO_ID
public static final TreeBuilder.RootNode NULL_ID
public static TreeBuilder.RootNode[] values()
for (TreeBuilder.RootNode c : TreeBuilder.RootNode.values()) System.out.println(c);
public static TreeBuilder.RootNode 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 © 2021. All rights reserved.