public static enum OTraverseStatement.Strategy extends Enum<OTraverseStatement.Strategy>
Enum Constant and Description |
---|
BREADTH_FIRST |
DEPTH_FIRST |
Modifier and Type | Method and Description |
---|---|
static OTraverseStatement.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OTraverseStatement.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OTraverseStatement.Strategy DEPTH_FIRST
public static final OTraverseStatement.Strategy BREADTH_FIRST
public static OTraverseStatement.Strategy[] values()
for (OTraverseStatement.Strategy c : OTraverseStatement.Strategy.values()) System.out.println(c);
public static OTraverseStatement.Strategy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2009–2020 OrientDB. All rights reserved.