public static enum GeneralTreeNode.NodeType extends Enum<GeneralTreeNode.NodeType>
| Modifier and Type | Method and Description |
|---|---|
static GeneralTreeNode.NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeneralTreeNode.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneralTreeNode.NodeType OR
public static final GeneralTreeNode.NodeType AND
public static final GeneralTreeNode.NodeType NOT
public static final GeneralTreeNode.NodeType LEAF
public static GeneralTreeNode.NodeType[] values()
for (GeneralTreeNode.NodeType c : GeneralTreeNode.NodeType.values()) System.out.println(c);
public static GeneralTreeNode.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 © 2015. All Rights Reserved.