Uses of Interface
org.apache.tinkerpop.gremlin.language.grammar.GremlinVisitor
- 
Packages that use GremlinVisitor Package Description org.apache.tinkerpop.gremlin.language.grammar org.apache.tinkerpop.gremlin.language.translator 
- 
- 
Uses of GremlinVisitor in org.apache.tinkerpop.gremlin.language.grammarClasses in org.apache.tinkerpop.gremlin.language.grammar that implement GremlinVisitor Modifier and Type Class Description classArgumentVisitorclassDefaultGremlinBaseVisitor<T>This class provides implementation ofGremlinVisitor, where each method will throwUnsupportedOperationException.classGenericLiteralVisitorVisitor class to handle generic literal.classGraphTraversalSourceVisitorThis class implements theGraphTraversalSourceproducing methods of Gremlin grammar.classGremlinAntlrToJavaThis is the entry point for converting the Gremlin Antlr grammar into Java.classGremlinBaseVisitor<T>This class provides an empty implementation ofGremlinVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.classNestedTraversalSourceListVisitorThis class implements Gremlin grammar's nested-traversal-list methods that returns aTraversal[]to the callers.classNoOpTerminalVisitorThis is the entry point for converting the Gremlin Antlr grammar into Java.classTerminalMethodToBytecodeVisitorHandles terminal steps forBytecodeas they are not added this way naturally.classTraversalMethodVisitorSpecific case of TraversalRootVisitor where all TraversalMethods returns a GraphTraversal object.classTraversalPredicateVisitorclassTraversalRootVisitor<G extends Traversal>This visitor handles the cases when a new traversal is getting started.classTraversalSourceSelfMethodVisitorAGraphTraversalSourceself method visitor.classTraversalSourceSpawnMethodVisitorUse aGraphTraversalSourceas the source and returns aGraphTraversalobject.classTraversalSourceTxVisitorHandles transactions via calls totx().classTraversalStrategyVisitorclassTraversalTerminalMethodVisitorTraversal terminal method visitorclassWithOptionsVisitorCoversStringoriented constants used as arguments toGraphTraversal.with(String)steps.Methods in org.apache.tinkerpop.gremlin.language.grammar with parameters of type GremlinVisitor Modifier and Type Method Description static ObjectGremlinQueryParser. parse(String query, GremlinVisitor<Object> visitor)Parse Gremlin string using a specifiedGremlinAntlrToJavaobject.
- 
Uses of GremlinVisitor in org.apache.tinkerpop.gremlin.language.translatorClasses in org.apache.tinkerpop.gremlin.language.translator that implement GremlinVisitor Modifier and Type Class Description classAbstractTranslateVisitorA base class for visitors that translate Gremlin AST nodes to Gremlin strings.classAnonymizedTranslatorVisitorA translator that anonymizes Gremlin so that arguments that might contain sensitive information are removed.classDotNetTranslateVisitorConverts a Gremlin traversal string into a C# source code representation of that traversal with an aim at sacrificing some formatting for the ability to compile correctly.classGoTranslateVisitorclassGroovyTranslateVisitorConverts a Gremlin traversal string into a Groovy source code representation of that traversal with an aim at sacrificing some formatting for the ability to compile correctly.classJavascriptTranslateVisitorConverts a Gremlin traversal string into a Javascript source code representation of that traversal with an aim at sacrificing some formatting for the ability to compile correctly.classJavaTranslateVisitorConverts a Gremlin traversal string into a Java source code representation of that traversal with an aim at sacrificing some formatting for the ability to compile correctly.classPythonTranslateVisitorConverts a Gremlin traversal string into a Python source code representation of that traversal with an aim at sacrificing some formatting for the ability to compile correctly.classTranslateVisitorA Gremlin to Gremlin translator.
 
-