GraphTraversalSource |
GraphTraversalSource.clone() |
|
GraphTraversalSource |
GraphTraversalSource.with(String key) |
Provides a configuration to a traversal in the form of a key which is the same as with(key, true) .
|
GraphTraversalSource |
GraphTraversalSource.with(String key,
Object value) |
Provides a configuration to a traversal in the form of a key value pair.
|
GraphTraversalSource |
GraphTraversalSource.withBulk(boolean useBulk) |
|
GraphTraversalSource |
GraphTraversalSource.withComputer() |
Add the standard GraphComputer of the graph that will be used to execute the traversal.
|
GraphTraversalSource |
GraphTraversalSource.withComputer(Class<? extends GraphComputer> graphComputerClass) |
|
GraphTraversalSource |
GraphTraversalSource.withComputer(Computer computer) |
|
GraphTraversalSource |
GraphTraversalSource.withoutStrategies(Class<? extends TraversalStrategy>... traversalStrategyClasses) |
Remove an arbitrary collection of TraversalStrategy classes from the traversal source.
|
GraphTraversalSource |
GraphTraversalSource.withPath() |
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(A initialValue) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(A initialValue,
BinaryOperator<A> mergeOperator) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(A initialValue,
UnaryOperator<A> splitOperator) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(A initialValue,
UnaryOperator<A> splitOperator,
BinaryOperator<A> mergeOperator) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(Supplier<A> initialValue) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(Supplier<A> initialValue,
BinaryOperator<A> mergeOperator) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(Supplier<A> initialValue,
UnaryOperator<A> splitOperator) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSack(Supplier<A> initialValue,
UnaryOperator<A> splitOperator,
BinaryOperator<A> mergeOperator) |
Add a sack to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSideEffect(String key,
A initialValue) |
Add a sideEffect to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSideEffect(String key,
A initialValue,
BinaryOperator<A> reducer) |
Add a sideEffect to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSideEffect(String key,
Supplier<A> initialValue) |
Add a sideEffect to be used throughout the life of a spawned Traversal .
|
<A> GraphTraversalSource |
GraphTraversalSource.withSideEffect(String key,
Supplier<A> initialValue,
BinaryOperator<A> reducer) |
Add a sideEffect to be used throughout the life of a spawned Traversal .
|
GraphTraversalSource |
GraphTraversalSource.withStrategies(TraversalStrategy... traversalStrategies) |
|