Package cdc.graphs

Enum Class TraversalMethod

java.lang.Object
java.lang.Enum<TraversalMethod>
cdc.graphs.TraversalMethod
All Implemented Interfaces:
Serializable, Comparable<TraversalMethod>, Constable

public enum TraversalMethod extends Enum<TraversalMethod>
Enumeration of possible methods (DEPTH_FIRST or BREADTH_FIRST) used to traverse a graph.
Author:
Damien Carbonne
  • Enum Constant Details

    • DEPTH_FIRST

      public static final TraversalMethod DEPTH_FIRST
      Use a depth first traversal algorithm.
    • BREADTH_FIRST

      public static final TraversalMethod BREADTH_FIRST
      Use a breadth first traversal algorithm.
  • Method Details

    • values

      public static TraversalMethod[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TraversalMethod valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null