public enum TraversalMode extends java.lang.Enum<TraversalMode>
| Enum Constant and Description | 
|---|
| NON_RECURSIVETree will NOT be traversed. | 
| RECURSIVETree will be traversed recursively. | 
| Modifier and Type | Method and Description | 
|---|---|
| static TraversalMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static TraversalMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TraversalMode RECURSIVE
public static final TraversalMode NON_RECURSIVE
public static TraversalMode[] values()
for (TraversalMode c : TraversalMode.values()) System.out.println(c);
public static TraversalMode 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 null