public static enum Traversal.Direction extends java.lang.Enum<Traversal.Direction>
Enum Constant and Description |
---|
IN_EDGES |
IN_OUT_EDGES |
OUT_EDGES |
Modifier and Type | Method and Description |
---|---|
static Traversal.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Traversal.Direction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Traversal.Direction IN_EDGES
public static final Traversal.Direction IN_OUT_EDGES
public static final Traversal.Direction OUT_EDGES
public static Traversal.Direction 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 nullpublic static Traversal.Direction[] values()
for (Traversal.Direction c : Traversal.Direction.values()) System.out.println(c);