Algorithm
Development Kit 1.0

algs.model.tree
Enum AbstractBinaryTraversal.Phase

java.lang.Object
  extended by java.lang.Enum<AbstractBinaryTraversal.Phase>
      extended by 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.


Enum Constant Summary
DONE
           
LEFT
           
RIGHT
           
SELF
           
 
Method Summary
static AbstractBinaryTraversal.Phase valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractBinaryTraversal.Phase[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

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
Method Detail

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

Algorithm Development Kit 1.0

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.