Uses of Interface
org.apache.tinkerpop.gremlin.language.grammar.VariableResolver
- 
Packages that use VariableResolver Package Description org.apache.tinkerpop.gremlin.jsr223 org.apache.tinkerpop.gremlin.language.grammar 
- 
- 
Uses of VariableResolver in org.apache.tinkerpop.gremlin.jsr223Fields in org.apache.tinkerpop.gremlin.jsr223 with type parameters of type VariableResolver Modifier and Type Field Description static Map<String,Function<Map<String,Object>,VariableResolver>>VariableResolverPlugin. VARIABLE_RESOLVERSMethods in org.apache.tinkerpop.gremlin.jsr223 that return types with arguments of type VariableResolver Modifier and Type Method Description Function<Map<String,Object>,VariableResolver>VariableResolverCustomizer. getVariableResolverMaker()Constructor parameters in org.apache.tinkerpop.gremlin.jsr223 with type arguments of type VariableResolver Constructor Description VariableResolverCustomizer(Function<Map<String,Object>,VariableResolver> variableResolverMaker)
- 
Uses of VariableResolver in org.apache.tinkerpop.gremlin.language.grammarClasses in org.apache.tinkerpop.gremlin.language.grammar that implement VariableResolver Modifier and Type Class Description static classVariableResolver.DefaultVariableResolverAllows 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 classVariableResolver.DirectVariableResolverAllows 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 classVariableResolver.NoVariableResolverThisVariableResolverimplementation throws exceptions for all variable names.static classVariableResolver.NullVariableResolverThisVariableResolversimply provides anullvalue for all variable names.Methods in org.apache.tinkerpop.gremlin.language.grammar that return VariableResolver Modifier and Type Method Description static VariableResolverVariableResolver.NoVariableResolver. instance()static VariableResolverVariableResolver.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 specifiedGraphTraversalSourceand thus spawns theTraversalfrom this "g" rather than from a fresh one constructed from theGraphinstance.GremlinAntlrToJava(Graph graph, VariableResolver variableResolver)Constructs a new instance that is bound to the specifiedGraphinstance.NoOpTerminalVisitor(String traversalSourceName, Graph graph, Supplier<GraphTraversal<?,?>> createAnonymous, GraphTraversalSource g, VariableResolver variableResolver)NoOpTerminalVisitor(Graph graph, VariableResolver variableResolver)
 
-