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