public static enum SortedRootedTree.BranchOrdering extends java.lang.Enum<SortedRootedTree.BranchOrdering>
Enum Constant and Description |
---|
DECREASING_NODE_DENSITY |
INCREASING_NODE_DENSITY |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static SortedRootedTree.BranchOrdering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SortedRootedTree.BranchOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortedRootedTree.BranchOrdering INCREASING_NODE_DENSITY
public static final SortedRootedTree.BranchOrdering DECREASING_NODE_DENSITY
public static SortedRootedTree.BranchOrdering[] values()
for (SortedRootedTree.BranchOrdering c : SortedRootedTree.BranchOrdering.values()) System.out.println(c);
public static SortedRootedTree.BranchOrdering 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<SortedRootedTree.BranchOrdering>
http://code.google.com/p/jebl2/