Uses of Interface
org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
- 
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.driver.remoteMethods in org.apache.tinkerpop.gremlin.driver.remote with type parameters of type TraversalSource Modifier and Type Method Description <T extends TraversalSource>
 TDriverRemoteTransaction. begin(Class<T> traversalSourceClass)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credentialClasses in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential that implement TraversalSource Modifier and Type Class Description classCredentialTraversalSourceclassCredentialTraversalSourceDsl
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.jsr223Classes in org.apache.tinkerpop.gremlin.jsr223 with type parameters of type TraversalSource Modifier and Type Class Description classJavaTranslator<S extends TraversalSource,T extends Traversal.Admin<?,?>>Methods in org.apache.tinkerpop.gremlin.jsr223 with type parameters of type TraversalSource Modifier and Type Method Description static <S extends TraversalSource,T extends Traversal.Admin<?,?>>
 JavaTranslator<S,T>JavaTranslator. of(S traversalSource)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.process.computer.traversalMethods in org.apache.tinkerpop.gremlin.process.computer.traversal with parameters of type TraversalSource Modifier and Type Method Description TraversalVertexProgram.BuilderTraversalVertexProgram.Builder. traversal(TraversalSource traversalSource, String scriptEngine, String traversalScript, Object... bindings)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decorationMethods in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decoration with parameters of type TraversalSource Modifier and Type Method Description voidVertexProgramStrategy. addGraphComputerStrategies(TraversalSource traversalSource)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.process.traversalClasses in org.apache.tinkerpop.gremlin.process.traversal with type parameters of type TraversalSource Modifier and Type Class Description classAnonymousTraversalSource<T extends TraversalSource>Provides a unified way to construct aTraversalSourcefrom the perspective of the traversal.static interfaceTranslator.StepTranslator<S extends TraversalSource,T extends Traversal.Admin<?,?>>Translates bytecode to actual steps.Methods in org.apache.tinkerpop.gremlin.process.traversal with type parameters of type TraversalSource Modifier and Type Method Description static <T extends TraversalSource>
 AnonymousTraversalSource<T>AnonymousTraversalSource. traversal(Class<T> traversalSourceClass)Constructs anAnonymousTraversalSourcewhich will then be configured to spawn the specifiedTraversalSource.Methods in org.apache.tinkerpop.gremlin.process.traversal that return TraversalSource Modifier and Type Method Description TraversalSourceTraversalSource. clone()The clone-method should be used to create immutable traversal sources with each call to a configuration "withXXX"-method.default TraversalSourceTraversalSource. with(String key)Provides a configuration to a traversal in the form of a key which is the same aswith(key, true).default TraversalSourceTraversalSource. with(String key, Object value)Provides a configuration to a traversal in the form of a key value pair.default TraversalSourceTraversalSource. withComputer()Add the standardGraphComputerof the graph that will be used to execute the traversal.default TraversalSourceTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)Add aGraphComputerclass used to execute the traversal.default TraversalSourceTraversalSource. withComputer(Computer computer)Add aComputerthat will generate aGraphComputerfrom theGraphthat will be used to execute the traversal.default TraversalSourceTraversalSource. withoutStrategies(Class<? extends TraversalStrategy>... traversalStrategyClasses)Remove an arbitrary collection ofTraversalStrategyclasses from the traversal source.default <A> TraversalSourceTraversalSource. withSack(A initialValue)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(A initialValue, BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(A initialValue, UnaryOperator<A> splitOperator)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(A initialValue, UnaryOperator<A> splitOperator, BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(Supplier<A> initialValue)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(Supplier<A> initialValue, BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(Supplier<A> initialValue, UnaryOperator<A> splitOperator)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSack(Supplier<A> initialValue, UnaryOperator<A> splitOperator, BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSideEffect(String key, A initialValue)Add a sideEffect to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSideEffect(String key, A initialValue, BinaryOperator<A> reducer)Add a sideEffect to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSideEffect(String key, Supplier<A> initialValue)Add a sideEffect to be used throughout the life of a spawnedTraversal.default <A> TraversalSourceTraversalSource. withSideEffect(String key, Supplier<A> initialValue, BinaryOperator<A> reducer)Add a sideEffect to be used throughout the life of a spawnedTraversal.default TraversalSourceTraversalSource. withStrategies(TraversalStrategy... traversalStrategies)Add an arbitrary collection ofTraversalStrategyinstances to the traversal source.Methods in org.apache.tinkerpop.gremlin.process.traversal that return types with arguments of type TraversalSource Modifier and Type Method Description default Optional<TraversalSource>Traversal.Admin. getTraversalSource()Gets theTraversalSourcethat spawned theTraversalinstance initially if present.
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.process.traversal.dsl.graphClasses in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph that implement TraversalSource Modifier and Type Class Description classGraphTraversalSourceAGraphTraversalSourceis the primary DSL of the Gremlin traversal machine.
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.process.traversal.strategy.decorationConstructors in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration with parameters of type TraversalSource Constructor Description TranslationStrategy(TraversalSource traversalSource, Translator translator, boolean assertBytecode)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.process.traversal.utilClasses in org.apache.tinkerpop.gremlin.process.traversal.util with type parameters of type TraversalSource Modifier and Type Class Description classTraversalSourceFactory<T extends TraversalSource>TraversalSourceis notSerializable.Fields in org.apache.tinkerpop.gremlin.process.traversal.util declared as TraversalSource Modifier and Type Field Description protected TraversalSourceDefaultTraversal. gMethods in org.apache.tinkerpop.gremlin.process.traversal.util that return types with arguments of type TraversalSource Modifier and Type Method Description Optional<TraversalSource>DefaultTraversal. getTraversalSource()Constructors in org.apache.tinkerpop.gremlin.process.traversal.util with parameters of type TraversalSource Constructor Description DefaultTraversal(TraversalSource traversalSource)DefaultTraversal(TraversalSource traversalSource, Traversal.Admin<S,E> traversal)ScriptTraversal(TraversalSource traversalSource, String scriptEngine, String script, Object... bindings)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.serverMethods in org.apache.tinkerpop.gremlin.server that return TraversalSource Modifier and Type Method Description TraversalSourceGraphManager. getTraversalSource(String traversalSourceName)GetTraversalSourceinstance whose name matchestraversalSourceNameTraversalSourceGraphManager. removeTraversalSource(String tsName)RemoveTraversalSourceby name.Methods in org.apache.tinkerpop.gremlin.server with parameters of type TraversalSource Modifier and Type Method Description voidGraphManager. putTraversalSource(String tsName, TraversalSource ts)Add or update the specifiedTraversalSourcewith the specified name.
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.server.utilMethods in org.apache.tinkerpop.gremlin.server.util that return TraversalSource Modifier and Type Method Description TraversalSourceDefaultGraphManager. getTraversalSource(String traversalSourceName)TraversalSourceDefaultGraphManager. removeTraversalSource(String tsName)Methods in org.apache.tinkerpop.gremlin.server.util with parameters of type TraversalSource Modifier and Type Method Description voidDefaultGraphManager. putTraversalSource(String tsName, TraversalSource ts)
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.structureMethods in org.apache.tinkerpop.gremlin.structure with type parameters of type TraversalSource Modifier and Type Method Description default <T extends TraversalSource>
 TTransaction. begin()Starts a transaction in the context of aGraphTraversalSourceinstance.<T extends TraversalSource>
 TTransaction. begin(Class<T> traversalSourceClass)Starts a transaction in the context of a particularTraversalSourceinstance.default <C extends TraversalSource>
 CGraph. traversal(Class<C> traversalSourceClass)Generate aTraversalSourceusing the specifiedTraversalSourceclass.
- 
Uses of TraversalSource in org.apache.tinkerpop.gremlin.structure.utilMethods in org.apache.tinkerpop.gremlin.structure.util with type parameters of type TraversalSource Modifier and Type Method Description <T extends TraversalSource>
 TAbstractTransaction. begin(Class<T> traversalSourceClass)Methods in org.apache.tinkerpop.gremlin.structure.util with parameters of type TraversalSource Modifier and Type Method Description static StringStringFactory. traversalSourceString(TraversalSource traversalSource)
 
-