private static enum AVLTree.Skew extends java.lang.Enum<AVLTree.Skew>
| Enum Constant and Description |
|---|
BALANCED
Code for Skew.BALANCED trees.
|
LEFT_HIGH
Code for left high trees.
|
RIGHT_HIGH
Code for right high trees.
|
| Modifier and Type | Method and Description |
|---|---|
static AVLTree.Skew |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AVLTree.Skew[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AVLTree.Skew LEFT_HIGH
public static final AVLTree.Skew RIGHT_HIGH
public static final AVLTree.Skew BALANCED
public static AVLTree.Skew[] values()
for (AVLTree.Skew c : AVLTree.Skew.values()) System.out.println(c);
public static AVLTree.Skew 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 nullCopyright (c) 2003-2015 Apache Software Foundation