algs.model.tree
Enum AbstractBinaryTraversal.Phase
java.lang.Object
java.lang.Enum<AbstractBinaryTraversal.Phase>
algs.model.tree.AbstractBinaryTraversal.Phase
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<AbstractBinaryTraversal.Phase>
- Enclosing class:
- AbstractBinaryTraversal<T extends IBinaryTreeNode>
public static enum AbstractBinaryTraversal.Phase
- extends java.lang.Enum<AbstractBinaryTraversal.Phase>
Binary traversals have three phases.
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
LEFT
public static final AbstractBinaryTraversal.Phase LEFT
SELF
public static final AbstractBinaryTraversal.Phase SELF
RIGHT
public static final AbstractBinaryTraversal.Phase RIGHT
DONE
public static final AbstractBinaryTraversal.Phase DONE
values
public static AbstractBinaryTraversal.Phase[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AbstractBinaryTraversal.Phase c : AbstractBinaryTraversal.Phase.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AbstractBinaryTraversal.Phase valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
This code supports the Algorithms in a Nutshell book, published by O'Reilly Media, Inc. in November 2008. Please visit the book web page to learn of any changes to the code repository or to record a potential defect.