Uses of Interface
org.apache.tinkerpop.gremlin.language.grammar.VariableResolver
-
Packages that use VariableResolver Package Description org.apache.tinkerpop.gremlin.language.grammar -
-
Uses of VariableResolver in org.apache.tinkerpop.gremlin.language.grammar
Classes in org.apache.tinkerpop.gremlin.language.grammar that implement VariableResolver Modifier and Type Class Description static class
VariableResolver.DefaultVariableResolver
Allows for a provided variable set in the form of aMap
, where the keys are variable names and the values are the parameter values to be injected into the traversal in their place.static class
VariableResolver.NoVariableResolver
ThisVariableResolver
implementation throws exceptions for all variable names.static class
VariableResolver.NullVariableResolver
ThisVariableResolver
simply provides anull
value for all variable names.Methods in org.apache.tinkerpop.gremlin.language.grammar that return VariableResolver Modifier and Type Method Description static VariableResolver
VariableResolver.NoVariableResolver. instance()
static VariableResolver
VariableResolver.NullVariableResolver. instance()
Constructors in org.apache.tinkerpop.gremlin.language.grammar with parameters of type VariableResolver Constructor Description ArgumentVisitor(VariableResolver resolver, GremlinAntlrToJava antlr)
GremlinAntlrToJava(String traversalSourceName, Graph graph, Supplier<GraphTraversal<?,?>> createAnonymous, GraphTraversalSource g, VariableResolver variableResolver)
GremlinAntlrToJava(GraphTraversalSource g, VariableResolver variableResolver)
Constructs a new instance that is bound to the specifiedGraphTraversalSource
and thus spawns theTraversal
from this "g" rather than from a fresh one constructed from theGraph
instance.GremlinAntlrToJava(Graph graph, VariableResolver variableResolver)
Constructs a new instance that is bound to the specifiedGraph
instance.NoOpTerminalVisitor(String traversalSourceName, Graph graph, Supplier<GraphTraversal<?,?>> createAnonymous, GraphTraversalSource g, VariableResolver variableResolver)
NoOpTerminalVisitor(Graph graph, VariableResolver variableResolver)
-