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