public static enum InternalTraversalDriver.Strategy extends Enum<InternalTraversalDriver.Strategy>
Enum Constant and Description |
---|
BREADTHFIRST |
DEPTHFIRST |
Modifier and Type | Method and Description |
---|---|
static InternalTraversalDriver.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalTraversalDriver.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalTraversalDriver.Strategy DEPTHFIRST
public static final InternalTraversalDriver.Strategy BREADTHFIRST
public static InternalTraversalDriver.Strategy[] values()
for (InternalTraversalDriver.Strategy c : InternalTraversalDriver.Strategy.values()) System.out.println(c);
public static InternalTraversalDriver.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 © 2012–2016 ArangoDB GmbH. All rights reserved.