Package cdc.graphs
Enum TraversalMethod
- java.lang.Object
-
- java.lang.Enum<TraversalMethod>
-
- cdc.graphs.TraversalMethod
-
- All Implemented Interfaces:
Serializable,Comparable<TraversalMethod>
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 Summary
Enum Constants Enum Constant Description BREADTH_FIRSTUse a breadth first traversal algorithm.DEPTH_FIRSTUse a depth first traversal algorithm.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TraversalMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static TraversalMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static TraversalMethod[] 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 (TraversalMethod c : TraversalMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TraversalMethod valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-