Class DefaultGremlinBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- org.apache.tinkerpop.gremlin.language.grammar.DefaultGremlinBaseVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
,GremlinVisitor<T>
- Direct Known Subclasses:
ArgumentVisitor
,GenericLiteralVisitor
,GraphTraversalSourceVisitor
,GremlinAntlrToJava
,NestedTraversalSourceListVisitor
,TraversalPredicateVisitor
,TraversalRootVisitor
,TraversalSourceSelfMethodVisitor
,TraversalSourceSpawnMethodVisitor
,TraversalSourceTxVisitor
,TraversalStrategyVisitor
,TraversalTerminalMethodVisitor
,WithOptionsVisitor
public class DefaultGremlinBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements GremlinVisitor<T>
This class provides implementation ofGremlinVisitor
, where each method will throwUnsupportedOperationException
. All the visitor class will extend this class, so that if there is method that are not manually implemented, and called, an exception will be thrown to help us catch bugs.
-
-
Constructor Summary
Constructors Constructor Description DefaultGremlinBaseVisitor()
-
Method Summary
-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
notImplemented
protected void notImplemented(org.antlr.v4.runtime.tree.ParseTree ctx)
-
visitQueryList
public T visitQueryList(GremlinParser.QueryListContext ctx)
Visit a parse tree produced byGremlinParser.queryList()
.- Specified by:
visitQueryList
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQuery
public T visitQuery(GremlinParser.QueryContext ctx)
Visit a parse tree produced byGremlinParser.query()
.- Specified by:
visitQuery
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEmptyQuery
public T visitEmptyQuery(GremlinParser.EmptyQueryContext ctx)
Visit a parse tree produced byGremlinParser.emptyQuery()
.- Specified by:
visitEmptyQuery
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSource
public T visitTraversalSource(GremlinParser.TraversalSourceContext ctx)
Visit a parse tree produced byGremlinParser.traversalSource()
.- Specified by:
visitTraversalSource
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTransactionPart
public T visitTransactionPart(GremlinParser.TransactionPartContext ctx)
Visit a parse tree produced byGremlinParser.transactionPart()
.- Specified by:
visitTransactionPart
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRootTraversal
public T visitRootTraversal(GremlinParser.RootTraversalContext ctx)
Visit a parse tree produced byGremlinParser.rootTraversal()
.- Specified by:
visitRootTraversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod
public T visitTraversalSourceSelfMethod(GremlinParser.TraversalSourceSelfMethodContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod()
.- Specified by:
visitTraversalSourceSelfMethod
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod_withBulk
public T visitTraversalSourceSelfMethod_withBulk(GremlinParser.TraversalSourceSelfMethod_withBulkContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod_withBulk()
.- Specified by:
visitTraversalSourceSelfMethod_withBulk
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod_withPath
public T visitTraversalSourceSelfMethod_withPath(GremlinParser.TraversalSourceSelfMethod_withPathContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod_withPath()
.- Specified by:
visitTraversalSourceSelfMethod_withPath
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod_withSack
public T visitTraversalSourceSelfMethod_withSack(GremlinParser.TraversalSourceSelfMethod_withSackContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod_withSack()
.- Specified by:
visitTraversalSourceSelfMethod_withSack
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod_withSideEffect
public T visitTraversalSourceSelfMethod_withSideEffect(GremlinParser.TraversalSourceSelfMethod_withSideEffectContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod_withSideEffect()
.- Specified by:
visitTraversalSourceSelfMethod_withSideEffect
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod_withStrategies
public T visitTraversalSourceSelfMethod_withStrategies(GremlinParser.TraversalSourceSelfMethod_withStrategiesContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod_withStrategies()
.- Specified by:
visitTraversalSourceSelfMethod_withStrategies
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSelfMethod_with
public T visitTraversalSourceSelfMethod_with(GremlinParser.TraversalSourceSelfMethod_withContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSelfMethod_with()
.- Specified by:
visitTraversalSourceSelfMethod_with
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod
public T visitTraversalSourceSpawnMethod(GremlinParser.TraversalSourceSpawnMethodContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod()
.- Specified by:
visitTraversalSourceSpawnMethod
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_addE
public T visitTraversalSourceSpawnMethod_addE(GremlinParser.TraversalSourceSpawnMethod_addEContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_addE()
.- Specified by:
visitTraversalSourceSpawnMethod_addE
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_addV
public T visitTraversalSourceSpawnMethod_addV(GremlinParser.TraversalSourceSpawnMethod_addVContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_addV()
.- Specified by:
visitTraversalSourceSpawnMethod_addV
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_E
public T visitTraversalSourceSpawnMethod_E(GremlinParser.TraversalSourceSpawnMethod_EContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_E()
.- Specified by:
visitTraversalSourceSpawnMethod_E
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_V
public T visitTraversalSourceSpawnMethod_V(GremlinParser.TraversalSourceSpawnMethod_VContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_V()
.- Specified by:
visitTraversalSourceSpawnMethod_V
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_inject
public T visitTraversalSourceSpawnMethod_inject(GremlinParser.TraversalSourceSpawnMethod_injectContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_inject()
.- Specified by:
visitTraversalSourceSpawnMethod_inject
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_io
public T visitTraversalSourceSpawnMethod_io(GremlinParser.TraversalSourceSpawnMethod_ioContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_io()
.- Specified by:
visitTraversalSourceSpawnMethod_io
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_call_empty
public T visitTraversalSourceSpawnMethod_call_empty(GremlinParser.TraversalSourceSpawnMethod_call_emptyContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_call_empty
labeled alternative inGremlinParser.traversalSourceSpawnMethod_call()
.- Specified by:
visitTraversalSourceSpawnMethod_call_empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_call_string
public T visitTraversalSourceSpawnMethod_call_string(GremlinParser.TraversalSourceSpawnMethod_call_stringContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_call_string
labeled alternative inGremlinParser.traversalSourceSpawnMethod_call()
.- Specified by:
visitTraversalSourceSpawnMethod_call_string
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_call_string_map
public T visitTraversalSourceSpawnMethod_call_string_map(GremlinParser.TraversalSourceSpawnMethod_call_string_mapContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_call_string_map
labeled alternative inGremlinParser.traversalSourceSpawnMethod_call()
.- Specified by:
visitTraversalSourceSpawnMethod_call_string_map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_call_string_traversal
public T visitTraversalSourceSpawnMethod_call_string_traversal(GremlinParser.TraversalSourceSpawnMethod_call_string_traversalContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_call_string_traversal
labeled alternative inGremlinParser.traversalSourceSpawnMethod_call()
.- Specified by:
visitTraversalSourceSpawnMethod_call_string_traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_call_string_map_traversal
public T visitTraversalSourceSpawnMethod_call_string_map_traversal(GremlinParser.TraversalSourceSpawnMethod_call_string_map_traversalContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_call_string_map_traversal
labeled alternative inGremlinParser.traversalSourceSpawnMethod_call()
.- Specified by:
visitTraversalSourceSpawnMethod_call_string_map_traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChainedTraversal
public T visitChainedTraversal(GremlinParser.ChainedTraversalContext ctx)
Visit a parse tree produced byGremlinParser.chainedTraversal()
.- Specified by:
visitChainedTraversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChainedParentOfGraphTraversal
public T visitChainedParentOfGraphTraversal(GremlinParser.ChainedParentOfGraphTraversalContext ctx)
Visit a parse tree produced byGremlinParser.chainedParentOfGraphTraversal()
.- Specified by:
visitChainedParentOfGraphTraversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNestedTraversal
public T visitNestedTraversal(GremlinParser.NestedTraversalContext ctx)
Visit a parse tree produced byGremlinParser.nestedTraversal()
.- Specified by:
visitNestedTraversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTerminatedTraversal
public T visitTerminatedTraversal(GremlinParser.TerminatedTraversalContext ctx)
Visit a parse tree produced byGremlinParser.terminatedTraversal()
.- Specified by:
visitTerminatedTraversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod
public T visitTraversalMethod(GremlinParser.TraversalMethodContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod()
.- Specified by:
visitTraversalMethod
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_V
public T visitTraversalMethod_V(GremlinParser.TraversalMethod_VContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_V()
.- Specified by:
visitTraversalMethod_V
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_E
public T visitTraversalMethod_E(GremlinParser.TraversalMethod_EContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_E()
.- Specified by:
visitTraversalMethod_E
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_addE_String
public T visitTraversalMethod_addE_String(GremlinParser.TraversalMethod_addE_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_addE_String
labeled alternative inGremlinParser.traversalMethod_addE()
.- Specified by:
visitTraversalMethod_addE_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_addE_Traversal
public T visitTraversalMethod_addE_Traversal(GremlinParser.TraversalMethod_addE_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_addE_Traversal
labeled alternative inGremlinParser.traversalMethod_addE()
.- Specified by:
visitTraversalMethod_addE_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_addV_Empty
public T visitTraversalMethod_addV_Empty(GremlinParser.TraversalMethod_addV_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_addV_Empty
labeled alternative inGremlinParser.traversalMethod_addV()
.- Specified by:
visitTraversalMethod_addV_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_addV_String
public T visitTraversalMethod_addV_String(GremlinParser.TraversalMethod_addV_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_addV_String
labeled alternative inGremlinParser.traversalMethod_addV()
.- Specified by:
visitTraversalMethod_addV_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_addV_Traversal
public T visitTraversalMethod_addV_Traversal(GremlinParser.TraversalMethod_addV_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_addV_Traversal
labeled alternative inGremlinParser.traversalMethod_addV()
.- Specified by:
visitTraversalMethod_addV_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_aggregate_String
public T visitTraversalMethod_aggregate_String(GremlinParser.TraversalMethod_aggregate_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_aggregate_String
labeled alternative inGremlinParser.traversalMethod_aggregate()
.- Specified by:
visitTraversalMethod_aggregate_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_aggregate_Scope_String
public T visitTraversalMethod_aggregate_Scope_String(GremlinParser.TraversalMethod_aggregate_Scope_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_aggregate_Scope_String
labeled alternative inGremlinParser.traversalMethod_aggregate()
.- Specified by:
visitTraversalMethod_aggregate_Scope_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_all_P
public T visitTraversalMethod_all_P(GremlinParser.TraversalMethod_all_PContext ctx)
Visit a parse tree produced by thetraversalMethod_all_P
labeled alternative inGremlinParser.traversalMethod_all()
.- Specified by:
visitTraversalMethod_all_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_and
public T visitTraversalMethod_and(GremlinParser.TraversalMethod_andContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_and()
.- Specified by:
visitTraversalMethod_and
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_any_P
public T visitTraversalMethod_any_P(GremlinParser.TraversalMethod_any_PContext ctx)
Visit a parse tree produced by thetraversalMethod_any_P
labeled alternative inGremlinParser.traversalMethod_any()
.- Specified by:
visitTraversalMethod_any_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_as
public T visitTraversalMethod_as(GremlinParser.TraversalMethod_asContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_as()
.- Specified by:
visitTraversalMethod_as
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_barrier_Consumer
public T visitTraversalMethod_barrier_Consumer(GremlinParser.TraversalMethod_barrier_ConsumerContext ctx)
Visit a parse tree produced by thetraversalMethod_barrier_Consumer
labeled alternative inGremlinParser.traversalMethod_barrier()
.- Specified by:
visitTraversalMethod_barrier_Consumer
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_barrier_Empty
public T visitTraversalMethod_barrier_Empty(GremlinParser.TraversalMethod_barrier_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_barrier_Empty
labeled alternative inGremlinParser.traversalMethod_barrier()
.- Specified by:
visitTraversalMethod_barrier_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_barrier_int
public T visitTraversalMethod_barrier_int(GremlinParser.TraversalMethod_barrier_intContext ctx)
Visit a parse tree produced by thetraversalMethod_barrier_int
labeled alternative inGremlinParser.traversalMethod_barrier()
.- Specified by:
visitTraversalMethod_barrier_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_both
public T visitTraversalMethod_both(GremlinParser.TraversalMethod_bothContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_both()
.- Specified by:
visitTraversalMethod_both
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_bothE
public T visitTraversalMethod_bothE(GremlinParser.TraversalMethod_bothEContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_bothE()
.- Specified by:
visitTraversalMethod_bothE
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_bothV
public T visitTraversalMethod_bothV(GremlinParser.TraversalMethod_bothVContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_bothV()
.- Specified by:
visitTraversalMethod_bothV
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_branch
public T visitTraversalMethod_branch(GremlinParser.TraversalMethod_branchContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_branch()
.- Specified by:
visitTraversalMethod_branch
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Comparator
public T visitTraversalMethod_by_Comparator(GremlinParser.TraversalMethod_by_ComparatorContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Comparator
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Comparator
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Empty
public T visitTraversalMethod_by_Empty(GremlinParser.TraversalMethod_by_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Empty
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Function
public T visitTraversalMethod_by_Function(GremlinParser.TraversalMethod_by_FunctionContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Function
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Function
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Function_Comparator
public T visitTraversalMethod_by_Function_Comparator(GremlinParser.TraversalMethod_by_Function_ComparatorContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Function_Comparator
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Function_Comparator
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Order
public T visitTraversalMethod_by_Order(GremlinParser.TraversalMethod_by_OrderContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Order
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Order
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_String
public T visitTraversalMethod_by_String(GremlinParser.TraversalMethod_by_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_by_String
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_String_Comparator
public T visitTraversalMethod_by_String_Comparator(GremlinParser.TraversalMethod_by_String_ComparatorContext ctx)
Visit a parse tree produced by thetraversalMethod_by_String_Comparator
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_String_Comparator
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_T
public T visitTraversalMethod_by_T(GremlinParser.TraversalMethod_by_TContext ctx)
Visit a parse tree produced by thetraversalMethod_by_T
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_T
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Traversal
public T visitTraversalMethod_by_Traversal(GremlinParser.TraversalMethod_by_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Traversal
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_by_Traversal_Comparator
public T visitTraversalMethod_by_Traversal_Comparator(GremlinParser.TraversalMethod_by_Traversal_ComparatorContext ctx)
Visit a parse tree produced by thetraversalMethod_by_Traversal_Comparator
labeled alternative inGremlinParser.traversalMethod_by()
.- Specified by:
visitTraversalMethod_by_Traversal_Comparator
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_cap
public T visitTraversalMethod_cap(GremlinParser.TraversalMethod_capContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_cap()
.- Specified by:
visitTraversalMethod_cap
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_choose_Function
public T visitTraversalMethod_choose_Function(GremlinParser.TraversalMethod_choose_FunctionContext ctx)
Visit a parse tree produced by thetraversalMethod_choose_Function
labeled alternative inGremlinParser.traversalMethod_choose()
.- Specified by:
visitTraversalMethod_choose_Function
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_choose_Predicate_Traversal
public T visitTraversalMethod_choose_Predicate_Traversal(GremlinParser.TraversalMethod_choose_Predicate_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_choose_Predicate_Traversal
labeled alternative inGremlinParser.traversalMethod_choose()
.- Specified by:
visitTraversalMethod_choose_Predicate_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_choose_Predicate_Traversal_Traversal
public T visitTraversalMethod_choose_Predicate_Traversal_Traversal(GremlinParser.TraversalMethod_choose_Predicate_Traversal_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_choose_Predicate_Traversal_Traversal
labeled alternative inGremlinParser.traversalMethod_choose()
.- Specified by:
visitTraversalMethod_choose_Predicate_Traversal_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_choose_Traversal
public T visitTraversalMethod_choose_Traversal(GremlinParser.TraversalMethod_choose_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_choose_Traversal
labeled alternative inGremlinParser.traversalMethod_choose()
.- Specified by:
visitTraversalMethod_choose_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_choose_Traversal_Traversal
public T visitTraversalMethod_choose_Traversal_Traversal(GremlinParser.TraversalMethod_choose_Traversal_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_choose_Traversal_Traversal
labeled alternative inGremlinParser.traversalMethod_choose()
.- Specified by:
visitTraversalMethod_choose_Traversal_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_choose_Traversal_Traversal_Traversal
public T visitTraversalMethod_choose_Traversal_Traversal_Traversal(GremlinParser.TraversalMethod_choose_Traversal_Traversal_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_choose_Traversal_Traversal_Traversal
labeled alternative inGremlinParser.traversalMethod_choose()
.- Specified by:
visitTraversalMethod_choose_Traversal_Traversal_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_coalesce
public T visitTraversalMethod_coalesce(GremlinParser.TraversalMethod_coalesceContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_coalesce()
.- Specified by:
visitTraversalMethod_coalesce
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_coin
public T visitTraversalMethod_coin(GremlinParser.TraversalMethod_coinContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_coin()
.- Specified by:
visitTraversalMethod_coin
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_combine_Object
public T visitTraversalMethod_combine_Object(GremlinParser.TraversalMethod_combine_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_combine_Object
labeled alternative inGremlinParser.traversalMethod_combine()
.- Specified by:
visitTraversalMethod_combine_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_conjoin_String
public T visitTraversalMethod_conjoin_String(GremlinParser.TraversalMethod_conjoin_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_conjoin_String
labeled alternative inGremlinParser.traversalMethod_conjoin()
.- Specified by:
visitTraversalMethod_conjoin_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_connectedComponent
public T visitTraversalMethod_connectedComponent(GremlinParser.TraversalMethod_connectedComponentContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_connectedComponent()
.- Specified by:
visitTraversalMethod_connectedComponent
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_constant
public T visitTraversalMethod_constant(GremlinParser.TraversalMethod_constantContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_constant()
.- Specified by:
visitTraversalMethod_constant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_count_Empty
public T visitTraversalMethod_count_Empty(GremlinParser.TraversalMethod_count_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_count_Empty
labeled alternative inGremlinParser.traversalMethod_count()
.- Specified by:
visitTraversalMethod_count_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_count_Scope
public T visitTraversalMethod_count_Scope(GremlinParser.TraversalMethod_count_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_count_Scope
labeled alternative inGremlinParser.traversalMethod_count()
.- Specified by:
visitTraversalMethod_count_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_cyclicPath
public T visitTraversalMethod_cyclicPath(GremlinParser.TraversalMethod_cyclicPathContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_cyclicPath()
.- Specified by:
visitTraversalMethod_cyclicPath
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_dedup_Scope_String
public T visitTraversalMethod_dedup_Scope_String(GremlinParser.TraversalMethod_dedup_Scope_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_dedup_Scope_String
labeled alternative inGremlinParser.traversalMethod_dedup()
.- Specified by:
visitTraversalMethod_dedup_Scope_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_dedup_String
public T visitTraversalMethod_dedup_String(GremlinParser.TraversalMethod_dedup_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_dedup_String
labeled alternative inGremlinParser.traversalMethod_dedup()
.- Specified by:
visitTraversalMethod_dedup_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_difference_Object
public T visitTraversalMethod_difference_Object(GremlinParser.TraversalMethod_difference_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_difference_Object
labeled alternative inGremlinParser.traversalMethod_difference()
.- Specified by:
visitTraversalMethod_difference_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_disjunct_Object
public T visitTraversalMethod_disjunct_Object(GremlinParser.TraversalMethod_disjunct_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_disjunct_Object
labeled alternative inGremlinParser.traversalMethod_disjunct()
.- Specified by:
visitTraversalMethod_disjunct_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_drop
public T visitTraversalMethod_drop(GremlinParser.TraversalMethod_dropContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_drop()
.- Specified by:
visitTraversalMethod_drop
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_elementMap
public T visitTraversalMethod_elementMap(GremlinParser.TraversalMethod_elementMapContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_elementMap()
.- Specified by:
visitTraversalMethod_elementMap
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_emit_Empty
public T visitTraversalMethod_emit_Empty(GremlinParser.TraversalMethod_emit_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_emit_Empty
labeled alternative inGremlinParser.traversalMethod_emit()
.- Specified by:
visitTraversalMethod_emit_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_emit_Predicate
public T visitTraversalMethod_emit_Predicate(GremlinParser.TraversalMethod_emit_PredicateContext ctx)
Visit a parse tree produced by thetraversalMethod_emit_Predicate
labeled alternative inGremlinParser.traversalMethod_emit()
.- Specified by:
visitTraversalMethod_emit_Predicate
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_emit_Traversal
public T visitTraversalMethod_emit_Traversal(GremlinParser.TraversalMethod_emit_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_emit_Traversal
labeled alternative inGremlinParser.traversalMethod_emit()
.- Specified by:
visitTraversalMethod_emit_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_fail_Empty
public T visitTraversalMethod_fail_Empty(GremlinParser.TraversalMethod_fail_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_fail_Empty
labeled alternative inGremlinParser.traversalMethod_fail()
.- Specified by:
visitTraversalMethod_fail_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_fail_String
public T visitTraversalMethod_fail_String(GremlinParser.TraversalMethod_fail_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_fail_String
labeled alternative inGremlinParser.traversalMethod_fail()
.- Specified by:
visitTraversalMethod_fail_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_filter_Predicate
public T visitTraversalMethod_filter_Predicate(GremlinParser.TraversalMethod_filter_PredicateContext ctx)
Visit a parse tree produced by thetraversalMethod_filter_Predicate
labeled alternative inGremlinParser.traversalMethod_filter()
.- Specified by:
visitTraversalMethod_filter_Predicate
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_filter_Traversal
public T visitTraversalMethod_filter_Traversal(GremlinParser.TraversalMethod_filter_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_filter_Traversal
labeled alternative inGremlinParser.traversalMethod_filter()
.- Specified by:
visitTraversalMethod_filter_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_flatMap
public T visitTraversalMethod_flatMap(GremlinParser.TraversalMethod_flatMapContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_flatMap()
.- Specified by:
visitTraversalMethod_flatMap
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_fold_Empty
public T visitTraversalMethod_fold_Empty(GremlinParser.TraversalMethod_fold_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_fold_Empty
labeled alternative inGremlinParser.traversalMethod_fold()
.- Specified by:
visitTraversalMethod_fold_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_fold_Object_BiFunction
public T visitTraversalMethod_fold_Object_BiFunction(GremlinParser.TraversalMethod_fold_Object_BiFunctionContext ctx)
Visit a parse tree produced by thetraversalMethod_fold_Object_BiFunction
labeled alternative inGremlinParser.traversalMethod_fold()
.- Specified by:
visitTraversalMethod_fold_Object_BiFunction
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_from_String
public T visitTraversalMethod_from_String(GremlinParser.TraversalMethod_from_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_from_String
labeled alternative inGremlinParser.traversalMethod_from()
.- Specified by:
visitTraversalMethod_from_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_from_Traversal
public T visitTraversalMethod_from_Traversal(GremlinParser.TraversalMethod_from_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_from_Traversal
labeled alternative inGremlinParser.traversalMethod_from()
.- Specified by:
visitTraversalMethod_from_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_from_Vertex
public T visitTraversalMethod_from_Vertex(GremlinParser.TraversalMethod_from_VertexContext ctx)
Visit a parse tree produced by thetraversalMethod_from_Vertex
labeled alternative inGremlinParser.traversalMethod_from()
.- Specified by:
visitTraversalMethod_from_Vertex
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_group_Empty
public T visitTraversalMethod_group_Empty(GremlinParser.TraversalMethod_group_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_group_Empty
labeled alternative inGremlinParser.traversalMethod_group()
.- Specified by:
visitTraversalMethod_group_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_group_String
public T visitTraversalMethod_group_String(GremlinParser.TraversalMethod_group_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_group_String
labeled alternative inGremlinParser.traversalMethod_group()
.- Specified by:
visitTraversalMethod_group_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_groupCount_Empty
public T visitTraversalMethod_groupCount_Empty(GremlinParser.TraversalMethod_groupCount_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_groupCount_Empty
labeled alternative inGremlinParser.traversalMethod_groupCount()
.- Specified by:
visitTraversalMethod_groupCount_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_groupCount_String
public T visitTraversalMethod_groupCount_String(GremlinParser.TraversalMethod_groupCount_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_groupCount_String
labeled alternative inGremlinParser.traversalMethod_groupCount()
.- Specified by:
visitTraversalMethod_groupCount_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_String
public T visitTraversalMethod_has_String(GremlinParser.TraversalMethod_has_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_has_String
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_String_Object
public T visitTraversalMethod_has_String_Object(GremlinParser.TraversalMethod_has_String_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_has_String_Object
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_String_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_String_P
public T visitTraversalMethod_has_String_P(GremlinParser.TraversalMethod_has_String_PContext ctx)
Visit a parse tree produced by thetraversalMethod_has_String_P
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_String_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_String_String_Object
public T visitTraversalMethod_has_String_String_Object(GremlinParser.TraversalMethod_has_String_String_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_has_String_String_Object
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_String_String_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_String_String_P
public T visitTraversalMethod_has_String_String_P(GremlinParser.TraversalMethod_has_String_String_PContext ctx)
Visit a parse tree produced by thetraversalMethod_has_String_String_P
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_String_String_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_String_Traversal
public T visitTraversalMethod_has_String_Traversal(GremlinParser.TraversalMethod_has_String_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_has_String_Traversal
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_String_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_T_Object
public T visitTraversalMethod_has_T_Object(GremlinParser.TraversalMethod_has_T_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_has_T_Object
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_T_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_T_P
public T visitTraversalMethod_has_T_P(GremlinParser.TraversalMethod_has_T_PContext ctx)
Visit a parse tree produced by thetraversalMethod_has_T_P
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_T_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_has_T_Traversal
public T visitTraversalMethod_has_T_Traversal(GremlinParser.TraversalMethod_has_T_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_has_T_Traversal
labeled alternative inGremlinParser.traversalMethod_has()
.- Specified by:
visitTraversalMethod_has_T_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasId_Object_Object
public T visitTraversalMethod_hasId_Object_Object(GremlinParser.TraversalMethod_hasId_Object_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_hasId_Object_Object
labeled alternative inGremlinParser.traversalMethod_hasId()
.- Specified by:
visitTraversalMethod_hasId_Object_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasId_P
public T visitTraversalMethod_hasId_P(GremlinParser.TraversalMethod_hasId_PContext ctx)
Visit a parse tree produced by thetraversalMethod_hasId_P
labeled alternative inGremlinParser.traversalMethod_hasId()
.- Specified by:
visitTraversalMethod_hasId_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasKey_P
public T visitTraversalMethod_hasKey_P(GremlinParser.TraversalMethod_hasKey_PContext ctx)
Visit a parse tree produced by thetraversalMethod_hasKey_P
labeled alternative inGremlinParser.traversalMethod_hasKey()
.- Specified by:
visitTraversalMethod_hasKey_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasKey_String_String
public T visitTraversalMethod_hasKey_String_String(GremlinParser.TraversalMethod_hasKey_String_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_hasKey_String_String
labeled alternative inGremlinParser.traversalMethod_hasKey()
.- Specified by:
visitTraversalMethod_hasKey_String_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasLabel_P
public T visitTraversalMethod_hasLabel_P(GremlinParser.TraversalMethod_hasLabel_PContext ctx)
Visit a parse tree produced by thetraversalMethod_hasLabel_P
labeled alternative inGremlinParser.traversalMethod_hasLabel()
.- Specified by:
visitTraversalMethod_hasLabel_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasLabel_String_String
public T visitTraversalMethod_hasLabel_String_String(GremlinParser.TraversalMethod_hasLabel_String_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_hasLabel_String_String
labeled alternative inGremlinParser.traversalMethod_hasLabel()
.- Specified by:
visitTraversalMethod_hasLabel_String_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasNot
public T visitTraversalMethod_hasNot(GremlinParser.TraversalMethod_hasNotContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_hasNot()
.- Specified by:
visitTraversalMethod_hasNot
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasValue_Object_Object
public T visitTraversalMethod_hasValue_Object_Object(GremlinParser.TraversalMethod_hasValue_Object_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_hasValue_Object_Object
labeled alternative inGremlinParser.traversalMethod_hasValue()
.- Specified by:
visitTraversalMethod_hasValue_Object_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_hasValue_P
public T visitTraversalMethod_hasValue_P(GremlinParser.TraversalMethod_hasValue_PContext ctx)
Visit a parse tree produced by thetraversalMethod_hasValue_P
labeled alternative inGremlinParser.traversalMethod_hasValue()
.- Specified by:
visitTraversalMethod_hasValue_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_id
public T visitTraversalMethod_id(GremlinParser.TraversalMethod_idContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_id()
.- Specified by:
visitTraversalMethod_id
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_identity
public T visitTraversalMethod_identity(GremlinParser.TraversalMethod_identityContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_identity()
.- Specified by:
visitTraversalMethod_identity
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_in
public T visitTraversalMethod_in(GremlinParser.TraversalMethod_inContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_in()
.- Specified by:
visitTraversalMethod_in
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_inE
public T visitTraversalMethod_inE(GremlinParser.TraversalMethod_inEContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_inE()
.- Specified by:
visitTraversalMethod_inE
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_intersect_Object
public T visitTraversalMethod_intersect_Object(GremlinParser.TraversalMethod_intersect_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_intersect_Object
labeled alternative inGremlinParser.traversalMethod_intersect()
.- Specified by:
visitTraversalMethod_intersect_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_inV
public T visitTraversalMethod_inV(GremlinParser.TraversalMethod_inVContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_inV()
.- Specified by:
visitTraversalMethod_inV
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_index
public T visitTraversalMethod_index(GremlinParser.TraversalMethod_indexContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_index()
.- Specified by:
visitTraversalMethod_index
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_inject
public T visitTraversalMethod_inject(GremlinParser.TraversalMethod_injectContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_inject()
.- Specified by:
visitTraversalMethod_inject
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_is_Object
public T visitTraversalMethod_is_Object(GremlinParser.TraversalMethod_is_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_is_Object
labeled alternative inGremlinParser.traversalMethod_is()
.- Specified by:
visitTraversalMethod_is_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_is_P
public T visitTraversalMethod_is_P(GremlinParser.TraversalMethod_is_PContext ctx)
Visit a parse tree produced by thetraversalMethod_is_P
labeled alternative inGremlinParser.traversalMethod_is()
.- Specified by:
visitTraversalMethod_is_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_key
public T visitTraversalMethod_key(GremlinParser.TraversalMethod_keyContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_key()
.- Specified by:
visitTraversalMethod_key
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_label
public T visitTraversalMethod_label(GremlinParser.TraversalMethod_labelContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_label()
.- Specified by:
visitTraversalMethod_label
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_limit_Scope_long
public T visitTraversalMethod_limit_Scope_long(GremlinParser.TraversalMethod_limit_Scope_longContext ctx)
Visit a parse tree produced by thetraversalMethod_limit_Scope_long
labeled alternative inGremlinParser.traversalMethod_limit()
.- Specified by:
visitTraversalMethod_limit_Scope_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_limit_long
public T visitTraversalMethod_limit_long(GremlinParser.TraversalMethod_limit_longContext ctx)
Visit a parse tree produced by thetraversalMethod_limit_long
labeled alternative inGremlinParser.traversalMethod_limit()
.- Specified by:
visitTraversalMethod_limit_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_local
public T visitTraversalMethod_local(GremlinParser.TraversalMethod_localContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_local()
.- Specified by:
visitTraversalMethod_local
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_loops_Empty
public T visitTraversalMethod_loops_Empty(GremlinParser.TraversalMethod_loops_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_loops_Empty
labeled alternative inGremlinParser.traversalMethod_loops()
.- Specified by:
visitTraversalMethod_loops_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_loops_String
public T visitTraversalMethod_loops_String(GremlinParser.TraversalMethod_loops_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_loops_String
labeled alternative inGremlinParser.traversalMethod_loops()
.- Specified by:
visitTraversalMethod_loops_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_map
public T visitTraversalMethod_map(GremlinParser.TraversalMethod_mapContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_map()
.- Specified by:
visitTraversalMethod_map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_match
public T visitTraversalMethod_match(GremlinParser.TraversalMethod_matchContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_match()
.- Specified by:
visitTraversalMethod_match
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_math
public T visitTraversalMethod_math(GremlinParser.TraversalMethod_mathContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_math()
.- Specified by:
visitTraversalMethod_math
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_max_Empty
public T visitTraversalMethod_max_Empty(GremlinParser.TraversalMethod_max_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_max_Empty
labeled alternative inGremlinParser.traversalMethod_max()
.- Specified by:
visitTraversalMethod_max_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_max_Scope
public T visitTraversalMethod_max_Scope(GremlinParser.TraversalMethod_max_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_max_Scope
labeled alternative inGremlinParser.traversalMethod_max()
.- Specified by:
visitTraversalMethod_max_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mean_Empty
public T visitTraversalMethod_mean_Empty(GremlinParser.TraversalMethod_mean_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_mean_Empty
labeled alternative inGremlinParser.traversalMethod_mean()
.- Specified by:
visitTraversalMethod_mean_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mean_Scope
public T visitTraversalMethod_mean_Scope(GremlinParser.TraversalMethod_mean_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_mean_Scope
labeled alternative inGremlinParser.traversalMethod_mean()
.- Specified by:
visitTraversalMethod_mean_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_merge_Object
public T visitTraversalMethod_merge_Object(GremlinParser.TraversalMethod_merge_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_merge_Object
labeled alternative inGremlinParser.traversalMethod_merge()
.- Specified by:
visitTraversalMethod_merge_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_min_Empty
public T visitTraversalMethod_min_Empty(GremlinParser.TraversalMethod_min_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_min_Empty
labeled alternative inGremlinParser.traversalMethod_min()
.- Specified by:
visitTraversalMethod_min_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_min_Scope
public T visitTraversalMethod_min_Scope(GremlinParser.TraversalMethod_min_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_min_Scope
labeled alternative inGremlinParser.traversalMethod_min()
.- Specified by:
visitTraversalMethod_min_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_not
public T visitTraversalMethod_not(GremlinParser.TraversalMethod_notContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_not()
.- Specified by:
visitTraversalMethod_not
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_option_Object_Traversal
public T visitTraversalMethod_option_Object_Traversal(GremlinParser.TraversalMethod_option_Object_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_option_Object_Traversal
labeled alternative inGremlinParser.traversalMethod_option()
.- Specified by:
visitTraversalMethod_option_Object_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_option_Traversal
public T visitTraversalMethod_option_Traversal(GremlinParser.TraversalMethod_option_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_option_Traversal
labeled alternative inGremlinParser.traversalMethod_option()
.- Specified by:
visitTraversalMethod_option_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_optional
public T visitTraversalMethod_optional(GremlinParser.TraversalMethod_optionalContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_optional()
.- Specified by:
visitTraversalMethod_optional
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_or
public T visitTraversalMethod_or(GremlinParser.TraversalMethod_orContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_or()
.- Specified by:
visitTraversalMethod_or
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_order_Empty
public T visitTraversalMethod_order_Empty(GremlinParser.TraversalMethod_order_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_order_Empty
labeled alternative inGremlinParser.traversalMethod_order()
.- Specified by:
visitTraversalMethod_order_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_order_Scope
public T visitTraversalMethod_order_Scope(GremlinParser.TraversalMethod_order_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_order_Scope
labeled alternative inGremlinParser.traversalMethod_order()
.- Specified by:
visitTraversalMethod_order_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_otherV
public T visitTraversalMethod_otherV(GremlinParser.TraversalMethod_otherVContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_otherV()
.- Specified by:
visitTraversalMethod_otherV
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_out
public T visitTraversalMethod_out(GremlinParser.TraversalMethod_outContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_out()
.- Specified by:
visitTraversalMethod_out
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_outE
public T visitTraversalMethod_outE(GremlinParser.TraversalMethod_outEContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_outE()
.- Specified by:
visitTraversalMethod_outE
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_outV
public T visitTraversalMethod_outV(GremlinParser.TraversalMethod_outVContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_outV()
.- Specified by:
visitTraversalMethod_outV
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_pageRank_Empty
public T visitTraversalMethod_pageRank_Empty(GremlinParser.TraversalMethod_pageRank_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_pageRank_Empty
labeled alternative inGremlinParser.traversalMethod_pageRank()
.- Specified by:
visitTraversalMethod_pageRank_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_pageRank_double
public T visitTraversalMethod_pageRank_double(GremlinParser.TraversalMethod_pageRank_doubleContext ctx)
Visit a parse tree produced by thetraversalMethod_pageRank_double
labeled alternative inGremlinParser.traversalMethod_pageRank()
.- Specified by:
visitTraversalMethod_pageRank_double
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_path
public T visitTraversalMethod_path(GremlinParser.TraversalMethod_pathContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_path()
.- Specified by:
visitTraversalMethod_path
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_peerPressure
public T visitTraversalMethod_peerPressure(GremlinParser.TraversalMethod_peerPressureContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_peerPressure()
.- Specified by:
visitTraversalMethod_peerPressure
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_product_Object
public T visitTraversalMethod_product_Object(GremlinParser.TraversalMethod_product_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_product_Object
labeled alternative inGremlinParser.traversalMethod_product()
.- Specified by:
visitTraversalMethod_product_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_profile_Empty
public T visitTraversalMethod_profile_Empty(GremlinParser.TraversalMethod_profile_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_profile_Empty
labeled alternative inGremlinParser.traversalMethod_profile()
.- Specified by:
visitTraversalMethod_profile_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_profile_String
public T visitTraversalMethod_profile_String(GremlinParser.TraversalMethod_profile_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_profile_String
labeled alternative inGremlinParser.traversalMethod_profile()
.- Specified by:
visitTraversalMethod_profile_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_project
public T visitTraversalMethod_project(GremlinParser.TraversalMethod_projectContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_project()
.- Specified by:
visitTraversalMethod_project
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_properties
public T visitTraversalMethod_properties(GremlinParser.TraversalMethod_propertiesContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_properties()
.- Specified by:
visitTraversalMethod_properties
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_property_Cardinality_Object_Object_Object
public T visitTraversalMethod_property_Cardinality_Object_Object_Object(GremlinParser.TraversalMethod_property_Cardinality_Object_Object_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_property_Cardinality_Object_Object_Object
labeled alternative inGremlinParser.traversalMethod_property()
.- Specified by:
visitTraversalMethod_property_Cardinality_Object_Object_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_property_Object_Object_Object
public T visitTraversalMethod_property_Object_Object_Object(GremlinParser.TraversalMethod_property_Object_Object_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_property_Object_Object_Object
labeled alternative inGremlinParser.traversalMethod_property()
.- Specified by:
visitTraversalMethod_property_Object_Object_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_property_Cardinality_Object
public T visitTraversalMethod_property_Cardinality_Object(GremlinParser.TraversalMethod_property_Cardinality_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_property_Cardinality_Object
labeled alternative inGremlinParser.traversalMethod_property()
.- Specified by:
visitTraversalMethod_property_Cardinality_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_property_Object
public T visitTraversalMethod_property_Object(GremlinParser.TraversalMethod_property_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_property_Object
labeled alternative inGremlinParser.traversalMethod_property()
.- Specified by:
visitTraversalMethod_property_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_propertyMap
public T visitTraversalMethod_propertyMap(GremlinParser.TraversalMethod_propertyMapContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_propertyMap()
.- Specified by:
visitTraversalMethod_propertyMap
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_range_Scope_long_long
public T visitTraversalMethod_range_Scope_long_long(GremlinParser.TraversalMethod_range_Scope_long_longContext ctx)
Visit a parse tree produced by thetraversalMethod_range_Scope_long_long
labeled alternative inGremlinParser.traversalMethod_range()
.- Specified by:
visitTraversalMethod_range_Scope_long_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_range_long_long
public T visitTraversalMethod_range_long_long(GremlinParser.TraversalMethod_range_long_longContext ctx)
Visit a parse tree produced by thetraversalMethod_range_long_long
labeled alternative inGremlinParser.traversalMethod_range()
.- Specified by:
visitTraversalMethod_range_long_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_read
public T visitTraversalMethod_read(GremlinParser.TraversalMethod_readContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_read()
.- Specified by:
visitTraversalMethod_read
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_repeat_String_Traversal
public T visitTraversalMethod_repeat_String_Traversal(GremlinParser.TraversalMethod_repeat_String_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_repeat_String_Traversal
labeled alternative inGremlinParser.traversalMethod_repeat()
.- Specified by:
visitTraversalMethod_repeat_String_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_repeat_Traversal
public T visitTraversalMethod_repeat_Traversal(GremlinParser.TraversalMethod_repeat_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_repeat_Traversal
labeled alternative inGremlinParser.traversalMethod_repeat()
.- Specified by:
visitTraversalMethod_repeat_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sack_BiFunction
public T visitTraversalMethod_sack_BiFunction(GremlinParser.TraversalMethod_sack_BiFunctionContext ctx)
Visit a parse tree produced by thetraversalMethod_sack_BiFunction
labeled alternative inGremlinParser.traversalMethod_sack()
.- Specified by:
visitTraversalMethod_sack_BiFunction
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sack_Empty
public T visitTraversalMethod_sack_Empty(GremlinParser.TraversalMethod_sack_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_sack_Empty
labeled alternative inGremlinParser.traversalMethod_sack()
.- Specified by:
visitTraversalMethod_sack_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sample_Scope_int
public T visitTraversalMethod_sample_Scope_int(GremlinParser.TraversalMethod_sample_Scope_intContext ctx)
Visit a parse tree produced by thetraversalMethod_sample_Scope_int
labeled alternative inGremlinParser.traversalMethod_sample()
.- Specified by:
visitTraversalMethod_sample_Scope_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sample_int
public T visitTraversalMethod_sample_int(GremlinParser.TraversalMethod_sample_intContext ctx)
Visit a parse tree produced by thetraversalMethod_sample_int
labeled alternative inGremlinParser.traversalMethod_sample()
.- Specified by:
visitTraversalMethod_sample_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_Column
public T visitTraversalMethod_select_Column(GremlinParser.TraversalMethod_select_ColumnContext ctx)
Visit a parse tree produced by thetraversalMethod_select_Column
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_Column
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_Pop_String
public T visitTraversalMethod_select_Pop_String(GremlinParser.TraversalMethod_select_Pop_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_select_Pop_String
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_Pop_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_Pop_String_String_String
public T visitTraversalMethod_select_Pop_String_String_String(GremlinParser.TraversalMethod_select_Pop_String_String_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_select_Pop_String_String_String
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_Pop_String_String_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_Pop_Traversal
public T visitTraversalMethod_select_Pop_Traversal(GremlinParser.TraversalMethod_select_Pop_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_select_Pop_Traversal
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_Pop_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_String
public T visitTraversalMethod_select_String(GremlinParser.TraversalMethod_select_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_select_String
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_String_String_String
public T visitTraversalMethod_select_String_String_String(GremlinParser.TraversalMethod_select_String_String_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_select_String_String_String
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_String_String_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_select_Traversal
public T visitTraversalMethod_select_Traversal(GremlinParser.TraversalMethod_select_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_select_Traversal
labeled alternative inGremlinParser.traversalMethod_select()
.- Specified by:
visitTraversalMethod_select_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_shortestPath
public T visitTraversalMethod_shortestPath(GremlinParser.TraversalMethod_shortestPathContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_shortestPath()
.- Specified by:
visitTraversalMethod_shortestPath
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sideEffect
public T visitTraversalMethod_sideEffect(GremlinParser.TraversalMethod_sideEffectContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_sideEffect()
.- Specified by:
visitTraversalMethod_sideEffect
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_simplePath
public T visitTraversalMethod_simplePath(GremlinParser.TraversalMethod_simplePathContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_simplePath()
.- Specified by:
visitTraversalMethod_simplePath
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_skip_Scope_long
public T visitTraversalMethod_skip_Scope_long(GremlinParser.TraversalMethod_skip_Scope_longContext ctx)
Visit a parse tree produced by thetraversalMethod_skip_Scope_long
labeled alternative inGremlinParser.traversalMethod_skip()
.- Specified by:
visitTraversalMethod_skip_Scope_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_skip_long
public T visitTraversalMethod_skip_long(GremlinParser.TraversalMethod_skip_longContext ctx)
Visit a parse tree produced by thetraversalMethod_skip_long
labeled alternative inGremlinParser.traversalMethod_skip()
.- Specified by:
visitTraversalMethod_skip_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_store
public T visitTraversalMethod_store(GremlinParser.TraversalMethod_storeContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_store()
.- Specified by:
visitTraversalMethod_store
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_subgraph
public T visitTraversalMethod_subgraph(GremlinParser.TraversalMethod_subgraphContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_subgraph()
.- Specified by:
visitTraversalMethod_subgraph
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sum_Empty
public T visitTraversalMethod_sum_Empty(GremlinParser.TraversalMethod_sum_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_sum_Empty
labeled alternative inGremlinParser.traversalMethod_sum()
.- Specified by:
visitTraversalMethod_sum_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_sum_Scope
public T visitTraversalMethod_sum_Scope(GremlinParser.TraversalMethod_sum_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_sum_Scope
labeled alternative inGremlinParser.traversalMethod_sum()
.- Specified by:
visitTraversalMethod_sum_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_tail_Empty
public T visitTraversalMethod_tail_Empty(GremlinParser.TraversalMethod_tail_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_tail_Empty
labeled alternative inGremlinParser.traversalMethod_tail()
.- Specified by:
visitTraversalMethod_tail_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_tail_Scope
public T visitTraversalMethod_tail_Scope(GremlinParser.TraversalMethod_tail_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_tail_Scope
labeled alternative inGremlinParser.traversalMethod_tail()
.- Specified by:
visitTraversalMethod_tail_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_tail_Scope_long
public T visitTraversalMethod_tail_Scope_long(GremlinParser.TraversalMethod_tail_Scope_longContext ctx)
Visit a parse tree produced by thetraversalMethod_tail_Scope_long
labeled alternative inGremlinParser.traversalMethod_tail()
.- Specified by:
visitTraversalMethod_tail_Scope_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_tail_long
public T visitTraversalMethod_tail_long(GremlinParser.TraversalMethod_tail_longContext ctx)
Visit a parse tree produced by thetraversalMethod_tail_long
labeled alternative inGremlinParser.traversalMethod_tail()
.- Specified by:
visitTraversalMethod_tail_long
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_timeLimit
public T visitTraversalMethod_timeLimit(GremlinParser.TraversalMethod_timeLimitContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_timeLimit()
.- Specified by:
visitTraversalMethod_timeLimit
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_times
public T visitTraversalMethod_times(GremlinParser.TraversalMethod_timesContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_times()
.- Specified by:
visitTraversalMethod_times
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_to_Direction_String
public T visitTraversalMethod_to_Direction_String(GremlinParser.TraversalMethod_to_Direction_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_to_Direction_String
labeled alternative inGremlinParser.traversalMethod_to()
.- Specified by:
visitTraversalMethod_to_Direction_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_to_String
public T visitTraversalMethod_to_String(GremlinParser.TraversalMethod_to_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_to_String
labeled alternative inGremlinParser.traversalMethod_to()
.- Specified by:
visitTraversalMethod_to_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_to_Traversal
public T visitTraversalMethod_to_Traversal(GremlinParser.TraversalMethod_to_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_to_Traversal
labeled alternative inGremlinParser.traversalMethod_to()
.- Specified by:
visitTraversalMethod_to_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_to_Vertex
public T visitTraversalMethod_to_Vertex(GremlinParser.TraversalMethod_to_VertexContext ctx)
Visit a parse tree produced by thetraversalMethod_to_Vertex
labeled alternative inGremlinParser.traversalMethod_to()
.- Specified by:
visitTraversalMethod_to_Vertex
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_toE
public T visitTraversalMethod_toE(GremlinParser.TraversalMethod_toEContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_toE()
.- Specified by:
visitTraversalMethod_toE
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_toV
public T visitTraversalMethod_toV(GremlinParser.TraversalMethod_toVContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_toV()
.- Specified by:
visitTraversalMethod_toV
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_tree_Empty
public T visitTraversalMethod_tree_Empty(GremlinParser.TraversalMethod_tree_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_tree_Empty
labeled alternative inGremlinParser.traversalMethod_tree()
.- Specified by:
visitTraversalMethod_tree_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_tree_String
public T visitTraversalMethod_tree_String(GremlinParser.TraversalMethod_tree_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_tree_String
labeled alternative inGremlinParser.traversalMethod_tree()
.- Specified by:
visitTraversalMethod_tree_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_unfold
public T visitTraversalMethod_unfold(GremlinParser.TraversalMethod_unfoldContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_unfold()
.- Specified by:
visitTraversalMethod_unfold
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_union
public T visitTraversalMethod_union(GremlinParser.TraversalMethod_unionContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_union()
.- Specified by:
visitTraversalMethod_union
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_until_Predicate
public T visitTraversalMethod_until_Predicate(GremlinParser.TraversalMethod_until_PredicateContext ctx)
Visit a parse tree produced by thetraversalMethod_until_Predicate
labeled alternative inGremlinParser.traversalMethod_until()
.- Specified by:
visitTraversalMethod_until_Predicate
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_until_Traversal
public T visitTraversalMethod_until_Traversal(GremlinParser.TraversalMethod_until_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_until_Traversal
labeled alternative inGremlinParser.traversalMethod_until()
.- Specified by:
visitTraversalMethod_until_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_value
public T visitTraversalMethod_value(GremlinParser.TraversalMethod_valueContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_value()
.- Specified by:
visitTraversalMethod_value
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_valueMap_String
public T visitTraversalMethod_valueMap_String(GremlinParser.TraversalMethod_valueMap_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_valueMap_String
labeled alternative inGremlinParser.traversalMethod_valueMap()
.- Specified by:
visitTraversalMethod_valueMap_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_valueMap_boolean_String
public T visitTraversalMethod_valueMap_boolean_String(GremlinParser.TraversalMethod_valueMap_boolean_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_valueMap_boolean_String
labeled alternative inGremlinParser.traversalMethod_valueMap()
.- Specified by:
visitTraversalMethod_valueMap_boolean_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_values
public T visitTraversalMethod_values(GremlinParser.TraversalMethod_valuesContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_values()
.- Specified by:
visitTraversalMethod_values
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_where_P
public T visitTraversalMethod_where_P(GremlinParser.TraversalMethod_where_PContext ctx)
Visit a parse tree produced by thetraversalMethod_where_P
labeled alternative inGremlinParser.traversalMethod_where()
.- Specified by:
visitTraversalMethod_where_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_where_String_P
public T visitTraversalMethod_where_String_P(GremlinParser.TraversalMethod_where_String_PContext ctx)
Visit a parse tree produced by thetraversalMethod_where_String_P
labeled alternative inGremlinParser.traversalMethod_where()
.- Specified by:
visitTraversalMethod_where_String_P
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_where_Traversal
public T visitTraversalMethod_where_Traversal(GremlinParser.TraversalMethod_where_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_where_Traversal
labeled alternative inGremlinParser.traversalMethod_where()
.- Specified by:
visitTraversalMethod_where_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_with_String
public T visitTraversalMethod_with_String(GremlinParser.TraversalMethod_with_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_with_String
labeled alternative inGremlinParser.traversalMethod_with()
.- Specified by:
visitTraversalMethod_with_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_with_String_Object
public T visitTraversalMethod_with_String_Object(GremlinParser.TraversalMethod_with_String_ObjectContext ctx)
Visit a parse tree produced by thetraversalMethod_with_String_Object
labeled alternative inGremlinParser.traversalMethod_with()
.- Specified by:
visitTraversalMethod_with_String_Object
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_write
public T visitTraversalMethod_write(GremlinParser.TraversalMethod_writeContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_write()
.- Specified by:
visitTraversalMethod_write
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_element
public T visitTraversalMethod_element(GremlinParser.TraversalMethod_elementContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_element()
.- Specified by:
visitTraversalMethod_element
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_call_string
public T visitTraversalMethod_call_string(GremlinParser.TraversalMethod_call_stringContext ctx)
Visit a parse tree produced by thetraversalMethod_call_string
labeled alternative inGremlinParser.traversalMethod_call()
.- Specified by:
visitTraversalMethod_call_string
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_call_string_map
public T visitTraversalMethod_call_string_map(GremlinParser.TraversalMethod_call_string_mapContext ctx)
Visit a parse tree produced by thetraversalMethod_call_string_map
labeled alternative inGremlinParser.traversalMethod_call()
.- Specified by:
visitTraversalMethod_call_string_map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_call_string_traversal
public T visitTraversalMethod_call_string_traversal(GremlinParser.TraversalMethod_call_string_traversalContext ctx)
Visit a parse tree produced by thetraversalMethod_call_string_traversal
labeled alternative inGremlinParser.traversalMethod_call()
.- Specified by:
visitTraversalMethod_call_string_traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_call_string_map_traversal
public T visitTraversalMethod_call_string_map_traversal(GremlinParser.TraversalMethod_call_string_map_traversalContext ctx)
Visit a parse tree produced by thetraversalMethod_call_string_map_traversal
labeled alternative inGremlinParser.traversalMethod_call()
.- Specified by:
visitTraversalMethod_call_string_map_traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_concat_Traversal_Traversal
public T visitTraversalMethod_concat_Traversal_Traversal(GremlinParser.TraversalMethod_concat_Traversal_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_concat_Traversal_Traversal
labeled alternative inGremlinParser.traversalMethod_concat()
.- Specified by:
visitTraversalMethod_concat_Traversal_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_concat_String
public T visitTraversalMethod_concat_String(GremlinParser.TraversalMethod_concat_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_concat_String
labeled alternative inGremlinParser.traversalMethod_concat()
.- Specified by:
visitTraversalMethod_concat_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_format_String
public T visitTraversalMethod_format_String(GremlinParser.TraversalMethod_format_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_format_String
labeled alternative inGremlinParser.traversalMethod_format()
.- Specified by:
visitTraversalMethod_format_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_asString_Empty
public T visitTraversalMethod_asString_Empty(GremlinParser.TraversalMethod_asString_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_asString_Empty
labeled alternative inGremlinParser.traversalMethod_asString()
.- Specified by:
visitTraversalMethod_asString_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_asString_Scope
public T visitTraversalMethod_asString_Scope(GremlinParser.TraversalMethod_asString_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_asString_Scope
labeled alternative inGremlinParser.traversalMethod_asString()
.- Specified by:
visitTraversalMethod_asString_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_toUpper_Empty
public T visitTraversalMethod_toUpper_Empty(GremlinParser.TraversalMethod_toUpper_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_toUpper_Empty
labeled alternative inGremlinParser.traversalMethod_toUpper()
.- Specified by:
visitTraversalMethod_toUpper_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_toUpper_Scope
public T visitTraversalMethod_toUpper_Scope(GremlinParser.TraversalMethod_toUpper_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_toUpper_Scope
labeled alternative inGremlinParser.traversalMethod_toUpper()
.- Specified by:
visitTraversalMethod_toUpper_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_toLower_Empty
public T visitTraversalMethod_toLower_Empty(GremlinParser.TraversalMethod_toLower_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_toLower_Empty
labeled alternative inGremlinParser.traversalMethod_toLower()
.- Specified by:
visitTraversalMethod_toLower_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_toLower_Scope
public T visitTraversalMethod_toLower_Scope(GremlinParser.TraversalMethod_toLower_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_toLower_Scope
labeled alternative inGremlinParser.traversalMethod_toLower()
.- Specified by:
visitTraversalMethod_toLower_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_length_Empty
public T visitTraversalMethod_length_Empty(GremlinParser.TraversalMethod_length_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_length_Empty
labeled alternative inGremlinParser.traversalMethod_length()
.- Specified by:
visitTraversalMethod_length_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_length_Scope
public T visitTraversalMethod_length_Scope(GremlinParser.TraversalMethod_length_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_length_Scope
labeled alternative inGremlinParser.traversalMethod_length()
.- Specified by:
visitTraversalMethod_length_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_trim_Empty
public T visitTraversalMethod_trim_Empty(GremlinParser.TraversalMethod_trim_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_trim_Empty
labeled alternative inGremlinParser.traversalMethod_trim()
.- Specified by:
visitTraversalMethod_trim_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_trim_Scope
public T visitTraversalMethod_trim_Scope(GremlinParser.TraversalMethod_trim_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_trim_Scope
labeled alternative inGremlinParser.traversalMethod_trim()
.- Specified by:
visitTraversalMethod_trim_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_lTrim_Empty
public T visitTraversalMethod_lTrim_Empty(GremlinParser.TraversalMethod_lTrim_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_lTrim_Empty
labeled alternative inGremlinParser.traversalMethod_lTrim()
.- Specified by:
visitTraversalMethod_lTrim_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_lTrim_Scope
public T visitTraversalMethod_lTrim_Scope(GremlinParser.TraversalMethod_lTrim_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_lTrim_Scope
labeled alternative inGremlinParser.traversalMethod_lTrim()
.- Specified by:
visitTraversalMethod_lTrim_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_rTrim_Empty
public T visitTraversalMethod_rTrim_Empty(GremlinParser.TraversalMethod_rTrim_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_rTrim_Empty
labeled alternative inGremlinParser.traversalMethod_rTrim()
.- Specified by:
visitTraversalMethod_rTrim_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_rTrim_Scope
public T visitTraversalMethod_rTrim_Scope(GremlinParser.TraversalMethod_rTrim_ScopeContext ctx)
Visit a parse tree produced by thetraversalMethod_rTrim_Scope
labeled alternative inGremlinParser.traversalMethod_rTrim()
.- Specified by:
visitTraversalMethod_rTrim_Scope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_reverse_Empty
public T visitTraversalMethod_reverse_Empty(GremlinParser.TraversalMethod_reverse_EmptyContext ctx)
Visit a parse tree produced by thetraversalMethod_reverse_Empty
labeled alternative inGremlinParser.traversalMethod_reverse()
.- Specified by:
visitTraversalMethod_reverse_Empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_replace_String_String
public T visitTraversalMethod_replace_String_String(GremlinParser.TraversalMethod_replace_String_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_replace_String_String
labeled alternative inGremlinParser.traversalMethod_replace()
.- Specified by:
visitTraversalMethod_replace_String_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_replace_Scope_String_String
public T visitTraversalMethod_replace_Scope_String_String(GremlinParser.TraversalMethod_replace_Scope_String_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_replace_Scope_String_String
labeled alternative inGremlinParser.traversalMethod_replace()
.- Specified by:
visitTraversalMethod_replace_Scope_String_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_split_String
public T visitTraversalMethod_split_String(GremlinParser.TraversalMethod_split_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_split_String
labeled alternative inGremlinParser.traversalMethod_split()
.- Specified by:
visitTraversalMethod_split_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_split_Scope_String
public T visitTraversalMethod_split_Scope_String(GremlinParser.TraversalMethod_split_Scope_StringContext ctx)
Visit a parse tree produced by thetraversalMethod_split_Scope_String
labeled alternative inGremlinParser.traversalMethod_split()
.- Specified by:
visitTraversalMethod_split_Scope_String
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_substring_int
public T visitTraversalMethod_substring_int(GremlinParser.TraversalMethod_substring_intContext ctx)
Visit a parse tree produced by thetraversalMethod_substring_int
labeled alternative inGremlinParser.traversalMethod_substring()
.- Specified by:
visitTraversalMethod_substring_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_substring_Scope_int
public T visitTraversalMethod_substring_Scope_int(GremlinParser.TraversalMethod_substring_Scope_intContext ctx)
Visit a parse tree produced by thetraversalMethod_substring_Scope_int
labeled alternative inGremlinParser.traversalMethod_substring()
.- Specified by:
visitTraversalMethod_substring_Scope_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_substring_int_int
public T visitTraversalMethod_substring_int_int(GremlinParser.TraversalMethod_substring_int_intContext ctx)
Visit a parse tree produced by thetraversalMethod_substring_int_int
labeled alternative inGremlinParser.traversalMethod_substring()
.- Specified by:
visitTraversalMethod_substring_int_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_substring_Scope_int_int
public T visitTraversalMethod_substring_Scope_int_int(GremlinParser.TraversalMethod_substring_Scope_int_intContext ctx)
Visit a parse tree produced by thetraversalMethod_substring_Scope_int_int
labeled alternative inGremlinParser.traversalMethod_substring()
.- Specified by:
visitTraversalMethod_substring_Scope_int_int
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_asDate
public T visitTraversalMethod_asDate(GremlinParser.TraversalMethod_asDateContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_asDate()
.- Specified by:
visitTraversalMethod_asDate
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_dateAdd
public T visitTraversalMethod_dateAdd(GremlinParser.TraversalMethod_dateAddContext ctx)
Visit a parse tree produced byGremlinParser.traversalMethod_dateAdd()
.- Specified by:
visitTraversalMethod_dateAdd
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_dateDiff_Traversal
public T visitTraversalMethod_dateDiff_Traversal(GremlinParser.TraversalMethod_dateDiff_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_dateDiff_Traversal
labeled alternative inGremlinParser.traversalMethod_dateDiff()
.- Specified by:
visitTraversalMethod_dateDiff_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_dateDiff_Date
public T visitTraversalMethod_dateDiff_Date(GremlinParser.TraversalMethod_dateDiff_DateContext ctx)
Visit a parse tree produced by thetraversalMethod_dateDiff_Date
labeled alternative inGremlinParser.traversalMethod_dateDiff()
.- Specified by:
visitTraversalMethod_dateDiff_Date
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalScope
public T visitTraversalScope(GremlinParser.TraversalScopeContext ctx)
Visit a parse tree produced byGremlinParser.traversalScope()
.- Specified by:
visitTraversalScope
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalToken
public T visitTraversalToken(GremlinParser.TraversalTokenContext ctx)
Visit a parse tree produced byGremlinParser.traversalToken()
.- Specified by:
visitTraversalToken
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalOrder
public T visitTraversalOrder(GremlinParser.TraversalOrderContext ctx)
Visit a parse tree produced byGremlinParser.traversalOrder()
.- Specified by:
visitTraversalOrder
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalDirection
public T visitTraversalDirection(GremlinParser.TraversalDirectionContext ctx)
Visit a parse tree produced byGremlinParser.traversalDirection()
.- Specified by:
visitTraversalDirection
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalCardinality
public T visitTraversalCardinality(GremlinParser.TraversalCardinalityContext ctx)
Visit a parse tree produced byGremlinParser.traversalCardinality()
.- Specified by:
visitTraversalCardinality
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalColumn
public T visitTraversalColumn(GremlinParser.TraversalColumnContext ctx)
Visit a parse tree produced byGremlinParser.traversalColumn()
.- Specified by:
visitTraversalColumn
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPop
public T visitTraversalPop(GremlinParser.TraversalPopContext ctx)
Visit a parse tree produced byGremlinParser.traversalPop()
.- Specified by:
visitTraversalPop
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalOperator
public T visitTraversalOperator(GremlinParser.TraversalOperatorContext ctx)
Visit a parse tree produced byGremlinParser.traversalOperator()
.- Specified by:
visitTraversalOperator
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPick
public T visitTraversalPick(GremlinParser.TraversalPickContext ctx)
Visit a parse tree produced byGremlinParser.traversalPick()
.- Specified by:
visitTraversalPick
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalDT
public T visitTraversalDT(GremlinParser.TraversalDTContext ctx)
Visit a parse tree produced byGremlinParser.traversalDT()
.- Specified by:
visitTraversalDT
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate
public T visitTraversalPredicate(GremlinParser.TraversalPredicateContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate()
.- Specified by:
visitTraversalPredicate
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod
public T visitTraversalTerminalMethod(GremlinParser.TraversalTerminalMethodContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod()
.- Specified by:
visitTraversalTerminalMethod
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSackMethod
public T visitTraversalSackMethod(GremlinParser.TraversalSackMethodContext ctx)
Visit a parse tree produced byGremlinParser.traversalSackMethod()
.- Specified by:
visitTraversalSackMethod
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSelfMethod
public T visitTraversalSelfMethod(GremlinParser.TraversalSelfMethodContext ctx)
Visit a parse tree produced byGremlinParser.traversalSelfMethod()
.- Specified by:
visitTraversalSelfMethod
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalComparator
public T visitTraversalComparator(GremlinParser.TraversalComparatorContext ctx)
Visit a parse tree produced byGremlinParser.traversalComparator()
.- Specified by:
visitTraversalComparator
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalFunction
public T visitTraversalFunction(GremlinParser.TraversalFunctionContext ctx)
Visit a parse tree produced byGremlinParser.traversalFunction()
.- Specified by:
visitTraversalFunction
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalBiFunction
public T visitTraversalBiFunction(GremlinParser.TraversalBiFunctionContext ctx)
Visit a parse tree produced byGremlinParser.traversalBiFunction()
.- Specified by:
visitTraversalBiFunction
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_eq
public T visitTraversalPredicate_eq(GremlinParser.TraversalPredicate_eqContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_eq()
.- Specified by:
visitTraversalPredicate_eq
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_neq
public T visitTraversalPredicate_neq(GremlinParser.TraversalPredicate_neqContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_neq()
.- Specified by:
visitTraversalPredicate_neq
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_lt
public T visitTraversalPredicate_lt(GremlinParser.TraversalPredicate_ltContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_lt()
.- Specified by:
visitTraversalPredicate_lt
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_lte
public T visitTraversalPredicate_lte(GremlinParser.TraversalPredicate_lteContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_lte()
.- Specified by:
visitTraversalPredicate_lte
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_gt
public T visitTraversalPredicate_gt(GremlinParser.TraversalPredicate_gtContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_gt()
.- Specified by:
visitTraversalPredicate_gt
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_gte
public T visitTraversalPredicate_gte(GremlinParser.TraversalPredicate_gteContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_gte()
.- Specified by:
visitTraversalPredicate_gte
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_inside
public T visitTraversalPredicate_inside(GremlinParser.TraversalPredicate_insideContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_inside()
.- Specified by:
visitTraversalPredicate_inside
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_outside
public T visitTraversalPredicate_outside(GremlinParser.TraversalPredicate_outsideContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_outside()
.- Specified by:
visitTraversalPredicate_outside
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_between
public T visitTraversalPredicate_between(GremlinParser.TraversalPredicate_betweenContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_between()
.- Specified by:
visitTraversalPredicate_between
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_within
public T visitTraversalPredicate_within(GremlinParser.TraversalPredicate_withinContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_within()
.- Specified by:
visitTraversalPredicate_within
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_without
public T visitTraversalPredicate_without(GremlinParser.TraversalPredicate_withoutContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_without()
.- Specified by:
visitTraversalPredicate_without
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_not
public T visitTraversalPredicate_not(GremlinParser.TraversalPredicate_notContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_not()
.- Specified by:
visitTraversalPredicate_not
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_containing
public T visitTraversalPredicate_containing(GremlinParser.TraversalPredicate_containingContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_containing()
.- Specified by:
visitTraversalPredicate_containing
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_notContaining
public T visitTraversalPredicate_notContaining(GremlinParser.TraversalPredicate_notContainingContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_notContaining()
.- Specified by:
visitTraversalPredicate_notContaining
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_startingWith
public T visitTraversalPredicate_startingWith(GremlinParser.TraversalPredicate_startingWithContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_startingWith()
.- Specified by:
visitTraversalPredicate_startingWith
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_notStartingWith
public T visitTraversalPredicate_notStartingWith(GremlinParser.TraversalPredicate_notStartingWithContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_notStartingWith()
.- Specified by:
visitTraversalPredicate_notStartingWith
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_endingWith
public T visitTraversalPredicate_endingWith(GremlinParser.TraversalPredicate_endingWithContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_endingWith()
.- Specified by:
visitTraversalPredicate_endingWith
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_notEndingWith
public T visitTraversalPredicate_notEndingWith(GremlinParser.TraversalPredicate_notEndingWithContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_notEndingWith()
.- Specified by:
visitTraversalPredicate_notEndingWith
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_regex
public T visitTraversalPredicate_regex(GremlinParser.TraversalPredicate_regexContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_regex()
.- Specified by:
visitTraversalPredicate_regex
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPredicate_notRegex
public T visitTraversalPredicate_notRegex(GremlinParser.TraversalPredicate_notRegexContext ctx)
Visit a parse tree produced byGremlinParser.traversalPredicate_notRegex()
.- Specified by:
visitTraversalPredicate_notRegex
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_iterate
public T visitTraversalTerminalMethod_iterate(GremlinParser.TraversalTerminalMethod_iterateContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_iterate()
.- Specified by:
visitTraversalTerminalMethod_iterate
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_explain
public T visitTraversalTerminalMethod_explain(GremlinParser.TraversalTerminalMethod_explainContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_explain()
.- Specified by:
visitTraversalTerminalMethod_explain
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_hasNext
public T visitTraversalTerminalMethod_hasNext(GremlinParser.TraversalTerminalMethod_hasNextContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_hasNext()
.- Specified by:
visitTraversalTerminalMethod_hasNext
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_tryNext
public T visitTraversalTerminalMethod_tryNext(GremlinParser.TraversalTerminalMethod_tryNextContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_tryNext()
.- Specified by:
visitTraversalTerminalMethod_tryNext
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_next
public T visitTraversalTerminalMethod_next(GremlinParser.TraversalTerminalMethod_nextContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_next()
.- Specified by:
visitTraversalTerminalMethod_next
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_toList
public T visitTraversalTerminalMethod_toList(GremlinParser.TraversalTerminalMethod_toListContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_toList()
.- Specified by:
visitTraversalTerminalMethod_toList
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_toSet
public T visitTraversalTerminalMethod_toSet(GremlinParser.TraversalTerminalMethod_toSetContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_toSet()
.- Specified by:
visitTraversalTerminalMethod_toSet
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTerminalMethod_toBulkSet
public T visitTraversalTerminalMethod_toBulkSet(GremlinParser.TraversalTerminalMethod_toBulkSetContext ctx)
Visit a parse tree produced byGremlinParser.traversalTerminalMethod_toBulkSet()
.- Specified by:
visitTraversalTerminalMethod_toBulkSet
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSelfMethod_none
public T visitTraversalSelfMethod_none(GremlinParser.TraversalSelfMethod_noneContext ctx)
Visit a parse tree produced byGremlinParser.traversalSelfMethod_none()
.- Specified by:
visitTraversalSelfMethod_none
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategy
public T visitTraversalStrategy(GremlinParser.TraversalStrategyContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategy()
.- Specified by:
visitTraversalStrategy
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyList
public T visitTraversalStrategyList(GremlinParser.TraversalStrategyListContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyList()
.- Specified by:
visitTraversalStrategyList
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyExpr
public T visitTraversalStrategyExpr(GremlinParser.TraversalStrategyExprContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyExpr()
.- Specified by:
visitTraversalStrategyExpr
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyArgs_PartitionStrategy
public T visitTraversalStrategyArgs_PartitionStrategy(GremlinParser.TraversalStrategyArgs_PartitionStrategyContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyArgs_PartitionStrategy()
.- Specified by:
visitTraversalStrategyArgs_PartitionStrategy
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyArgs_EdgeLabelVerificationStrategy
public T visitTraversalStrategyArgs_EdgeLabelVerificationStrategy(GremlinParser.TraversalStrategyArgs_EdgeLabelVerificationStrategyContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyArgs_EdgeLabelVerificationStrategy()
.- Specified by:
visitTraversalStrategyArgs_EdgeLabelVerificationStrategy
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyArgs_ReservedKeysVerificationStrategy
public T visitTraversalStrategyArgs_ReservedKeysVerificationStrategy(GremlinParser.TraversalStrategyArgs_ReservedKeysVerificationStrategyContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyArgs_ReservedKeysVerificationStrategy()
.- Specified by:
visitTraversalStrategyArgs_ReservedKeysVerificationStrategy
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyArgs_SubgraphStrategy
public T visitTraversalStrategyArgs_SubgraphStrategy(GremlinParser.TraversalStrategyArgs_SubgraphStrategyContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyArgs_SubgraphStrategy()
.- Specified by:
visitTraversalStrategyArgs_SubgraphStrategy
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalStrategyArgs_ProductiveByStrategy
public T visitTraversalStrategyArgs_ProductiveByStrategy(GremlinParser.TraversalStrategyArgs_ProductiveByStrategyContext ctx)
Visit a parse tree produced byGremlinParser.traversalStrategyArgs_ProductiveByStrategy()
.- Specified by:
visitTraversalStrategyArgs_ProductiveByStrategy
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNestedTraversalList
public T visitNestedTraversalList(GremlinParser.NestedTraversalListContext ctx)
Visit a parse tree produced byGremlinParser.nestedTraversalList()
.- Specified by:
visitNestedTraversalList
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNestedTraversalExpr
public T visitNestedTraversalExpr(GremlinParser.NestedTraversalExprContext ctx)
Visit a parse tree produced byGremlinParser.nestedTraversalExpr()
.- Specified by:
visitNestedTraversalExpr
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralList
public T visitGenericLiteralList(GremlinParser.GenericLiteralListContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralList()
.- Specified by:
visitGenericLiteralList
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralExpr
public T visitGenericLiteralExpr(GremlinParser.GenericLiteralExprContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralExpr()
.- Specified by:
visitGenericLiteralExpr
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralRange
public T visitGenericLiteralRange(GremlinParser.GenericLiteralRangeContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralRange()
.- Specified by:
visitGenericLiteralRange
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralCollection
public T visitGenericLiteralCollection(GremlinParser.GenericLiteralCollectionContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralCollection()
.- Specified by:
visitGenericLiteralCollection
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringLiteralList
public T visitStringLiteralList(GremlinParser.StringLiteralListContext ctx)
Visit a parse tree produced byGremlinParser.stringLiteralList()
.- Specified by:
visitStringLiteralList
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringLiteralExpr
public T visitStringLiteralExpr(GremlinParser.StringLiteralExprContext ctx)
Visit a parse tree produced byGremlinParser.stringLiteralExpr()
.- Specified by:
visitStringLiteralExpr
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteral
public T visitGenericLiteral(GremlinParser.GenericLiteralContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteral()
.- Specified by:
visitGenericLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralMap
public T visitGenericLiteralMap(GremlinParser.GenericLiteralMapContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralMap()
.- Specified by:
visitGenericLiteralMap
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIntegerLiteral
public T visitIntegerLiteral(GremlinParser.IntegerLiteralContext ctx)
Visit a parse tree produced byGremlinParser.integerLiteral()
.- Specified by:
visitIntegerLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFloatLiteral
public T visitFloatLiteral(GremlinParser.FloatLiteralContext ctx)
Visit a parse tree produced byGremlinParser.floatLiteral()
.- Specified by:
visitFloatLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBooleanLiteral
public T visitBooleanLiteral(GremlinParser.BooleanLiteralContext ctx)
Visit a parse tree produced byGremlinParser.booleanLiteral()
.- Specified by:
visitBooleanLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMapEntry
public T visitMapEntry(GremlinParser.MapEntryContext ctx)
Visit a parse tree produced byGremlinParser.mapEntry()
.- Specified by:
visitMapEntry
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNumericLiteral
public T visitNumericLiteral(GremlinParser.NumericLiteralContext ctx)
Visit a parse tree produced byGremlinParser.numericLiteral()
.- Specified by:
visitNumericLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringLiteral
public T visitStringLiteral(GremlinParser.StringLiteralContext ctx)
Visit a parse tree produced byGremlinParser.stringLiteral()
.- Specified by:
visitStringLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDateLiteral
public T visitDateLiteral(GremlinParser.DateLiteralContext ctx)
Visit a parse tree produced byGremlinParser.dateLiteral()
.- Specified by:
visitDateLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNullLiteral
public T visitNullLiteral(GremlinParser.NullLiteralContext ctx)
Visit a parse tree produced byGremlinParser.nullLiteral()
.- Specified by:
visitNullLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNanLiteral
public T visitNanLiteral(GremlinParser.NanLiteralContext ctx)
Visit a parse tree produced byGremlinParser.nanLiteral()
.- Specified by:
visitNanLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInfLiteral
public T visitInfLiteral(GremlinParser.InfLiteralContext ctx)
Visit a parse tree produced byGremlinParser.infLiteral()
.- Specified by:
visitInfLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPageRankStringConstant
public T visitPageRankStringConstant(GremlinParser.PageRankStringConstantContext ctx)
Visit a parse tree produced byGremlinParser.pageRankStringConstant()
.- Specified by:
visitPageRankStringConstant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPeerPressureStringConstant
public T visitPeerPressureStringConstant(GremlinParser.PeerPressureStringConstantContext ctx)
Visit a parse tree produced byGremlinParser.peerPressureStringConstant()
.- Specified by:
visitPeerPressureStringConstant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathStringConstant
public T visitShortestPathStringConstant(GremlinParser.ShortestPathStringConstantContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathStringConstant()
.- Specified by:
visitShortestPathStringConstant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsStringConstant
public T visitWithOptionsStringConstant(GremlinParser.WithOptionsStringConstantContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsStringConstant()
.- Specified by:
visitWithOptionsStringConstant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_option_Predicate_Traversal
public T visitTraversalMethod_option_Predicate_Traversal(GremlinParser.TraversalMethod_option_Predicate_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_option_Predicate_Traversal
labeled alternative inGremlinParser.traversalMethod_option()
.- Specified by:
visitTraversalMethod_option_Predicate_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConnectedComponentConstants
public T visitConnectedComponentConstants(GremlinParser.ConnectedComponentConstantsContext ctx)
Visit a parse tree produced byGremlinParser.connectedComponentConstants()
.- Specified by:
visitConnectedComponentConstants
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConnectedComponentStringConstant
public T visitConnectedComponentStringConstant(GremlinParser.ConnectedComponentStringConstantContext ctx)
Visit a parse tree produced byGremlinParser.connectedComponentStringConstant()
.- Specified by:
visitConnectedComponentStringConstant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsStringConstant
public T visitIoOptionsStringConstant(GremlinParser.IoOptionsStringConstantContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsStringConstant()
.- Specified by:
visitIoOptionsStringConstant
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStructureVertex
public T visitStructureVertex(GremlinParser.StructureVertexContext ctx)
Visit a parse tree produced byGremlinParser.structureVertex()
.- Specified by:
visitStructureVertex
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_mergeV_Map
public T visitTraversalSourceSpawnMethod_mergeV_Map(GremlinParser.TraversalSourceSpawnMethod_mergeV_MapContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_mergeV_Map
labeled alternative inGremlinParser.traversalSourceSpawnMethod_mergeV()
.- Specified by:
visitTraversalSourceSpawnMethod_mergeV_Map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_mergeV_Traversal
public T visitTraversalSourceSpawnMethod_mergeV_Traversal(GremlinParser.TraversalSourceSpawnMethod_mergeV_TraversalContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_mergeV_Traversal
labeled alternative inGremlinParser.traversalSourceSpawnMethod_mergeV()
.- Specified by:
visitTraversalSourceSpawnMethod_mergeV_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_option_Merge_Map
public T visitTraversalMethod_option_Merge_Map(GremlinParser.TraversalMethod_option_Merge_MapContext ctx)
Visit a parse tree produced by thetraversalMethod_option_Merge_Map
labeled alternative inGremlinParser.traversalMethod_option()
.- Specified by:
visitTraversalMethod_option_Merge_Map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_option_Merge_Traversal
public T visitTraversalMethod_option_Merge_Traversal(GremlinParser.TraversalMethod_option_Merge_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_option_Merge_Traversal
labeled alternative inGremlinParser.traversalMethod_option()
.- Specified by:
visitTraversalMethod_option_Merge_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMerge
public T visitTraversalMerge(GremlinParser.TraversalMergeContext ctx)
Visit a parse tree produced byGremlinParser.traversalMerge()
.- Specified by:
visitTraversalMerge
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mergeV_Map
public T visitTraversalMethod_mergeV_Map(GremlinParser.TraversalMethod_mergeV_MapContext ctx)
Visit a parse tree produced by thetraversalMethod_mergeV_Map
labeled alternative inGremlinParser.traversalMethod_mergeV()
.- Specified by:
visitTraversalMethod_mergeV_Map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mergeV_Traversal
public T visitTraversalMethod_mergeV_Traversal(GremlinParser.TraversalMethod_mergeV_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_mergeV_Traversal
labeled alternative inGremlinParser.traversalMethod_mergeV()
.- Specified by:
visitTraversalMethod_mergeV_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mergeE_Map
public T visitTraversalMethod_mergeE_Map(GremlinParser.TraversalMethod_mergeE_MapContext ctx)
Visit a parse tree produced by thetraversalMethod_mergeE_Map
labeled alternative inGremlinParser.traversalMethod_mergeE()
.- Specified by:
visitTraversalMethod_mergeE_Map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mergeE_Traversal
public T visitTraversalMethod_mergeE_Traversal(GremlinParser.TraversalMethod_mergeE_TraversalContext ctx)
Visit a parse tree produced by thetraversalMethod_mergeE_Traversal
labeled alternative inGremlinParser.traversalMethod_mergeE()
.- Specified by:
visitTraversalMethod_mergeE_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_mergeE_Map
public T visitTraversalSourceSpawnMethod_mergeE_Map(GremlinParser.TraversalSourceSpawnMethod_mergeE_MapContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_mergeE_Map
labeled alternative inGremlinParser.traversalSourceSpawnMethod_mergeE()
.- Specified by:
visitTraversalSourceSpawnMethod_mergeE_Map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_mergeE_Traversal
public T visitTraversalSourceSpawnMethod_mergeE_Traversal(GremlinParser.TraversalSourceSpawnMethod_mergeE_TraversalContext ctx)
Visit a parse tree produced by thetraversalSourceSpawnMethod_mergeE_Traversal
labeled alternative inGremlinParser.traversalSourceSpawnMethod_mergeE()
.- Specified by:
visitTraversalSourceSpawnMethod_mergeE_Traversal
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mergeV_empty
public T visitTraversalMethod_mergeV_empty(GremlinParser.TraversalMethod_mergeV_emptyContext ctx)
Visit a parse tree produced by thetraversalMethod_mergeV_empty
labeled alternative inGremlinParser.traversalMethod_mergeV()
.- Specified by:
visitTraversalMethod_mergeV_empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_mergeE_empty
public T visitTraversalMethod_mergeE_empty(GremlinParser.TraversalMethod_mergeE_emptyContext ctx)
Visit a parse tree produced by thetraversalMethod_mergeE_empty
labeled alternative inGremlinParser.traversalMethod_mergeE()
.- Specified by:
visitTraversalMethod_mergeE_empty
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSourceSpawnMethod_union
public T visitTraversalSourceSpawnMethod_union(GremlinParser.TraversalSourceSpawnMethod_unionContext ctx)
Visit a parse tree produced byGremlinParser.traversalSourceSpawnMethod_union()
.- Specified by:
visitTraversalSourceSpawnMethod_union
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBooleanArgument
public T visitBooleanArgument(GremlinParser.BooleanArgumentContext ctx)
Visit a parse tree produced byGremlinParser.booleanArgument()
.- Specified by:
visitBooleanArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVariable
public T visitVariable(GremlinParser.VariableContext ctx)
Visit a parse tree produced byGremlinParser.variable()
.- Specified by:
visitVariable
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIntegerArgument
public T visitIntegerArgument(GremlinParser.IntegerArgumentContext ctx)
Visit a parse tree produced byGremlinParser.integerArgument()
.- Specified by:
visitIntegerArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFloatArgument
public T visitFloatArgument(GremlinParser.FloatArgumentContext ctx)
Visit a parse tree produced byGremlinParser.floatArgument()
.- Specified by:
visitFloatArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringArgument
public T visitStringArgument(GremlinParser.StringArgumentContext ctx)
Visit a parse tree produced byGremlinParser.stringArgument()
.- Specified by:
visitStringArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringNullableArgument
public T visitStringNullableArgument(GremlinParser.StringNullableArgumentContext ctx)
Visit a parse tree produced byGremlinParser.stringNullableArgument()
.- Specified by:
visitStringNullableArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDateArgument
public T visitDateArgument(GremlinParser.DateArgumentContext ctx)
Visit a parse tree produced byGremlinParser.dateArgument()
.- Specified by:
visitDateArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringNullableLiteral
public T visitStringNullableLiteral(GremlinParser.StringNullableLiteralContext ctx)
Visit a parse tree produced byGremlinParser.stringNullableLiteral()
.- Specified by:
visitStringNullableLiteral
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionKeys
public T visitWithOptionKeys(GremlinParser.WithOptionKeysContext ctx)
Visit a parse tree produced byGremlinParser.withOptionKeys()
.- Specified by:
visitWithOptionKeys
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPageRankConstants
public T visitPageRankConstants(GremlinParser.PageRankConstantsContext ctx)
Visit a parse tree produced byGremlinParser.pageRankConstants()
.- Specified by:
visitPageRankConstants
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPeerPressureConstants
public T visitPeerPressureConstants(GremlinParser.PeerPressureConstantsContext ctx)
Visit a parse tree produced byGremlinParser.peerPressureConstants()
.- Specified by:
visitPeerPressureConstants
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathConstants
public T visitShortestPathConstants(GremlinParser.ShortestPathConstantsContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathConstants()
.- Specified by:
visitShortestPathConstants
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsValues
public T visitWithOptionsValues(GremlinParser.WithOptionsValuesContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsValues()
.- Specified by:
visitWithOptionsValues
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsKeys
public T visitIoOptionsKeys(GremlinParser.IoOptionsKeysContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsKeys()
.- Specified by:
visitIoOptionsKeys
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsValues
public T visitIoOptionsValues(GremlinParser.IoOptionsValuesContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsValues()
.- Specified by:
visitIoOptionsValues
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConnectedComponentConstants_component
public T visitConnectedComponentConstants_component(GremlinParser.ConnectedComponentConstants_componentContext ctx)
Visit a parse tree produced byGremlinParser.connectedComponentConstants_component()
.- Specified by:
visitConnectedComponentConstants_component
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConnectedComponentConstants_edges
public T visitConnectedComponentConstants_edges(GremlinParser.ConnectedComponentConstants_edgesContext ctx)
Visit a parse tree produced byGremlinParser.connectedComponentConstants_edges()
.- Specified by:
visitConnectedComponentConstants_edges
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConnectedComponentConstants_propertyName
public T visitConnectedComponentConstants_propertyName(GremlinParser.ConnectedComponentConstants_propertyNameContext ctx)
Visit a parse tree produced byGremlinParser.connectedComponentConstants_propertyName()
.- Specified by:
visitConnectedComponentConstants_propertyName
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPageRankConstants_edges
public T visitPageRankConstants_edges(GremlinParser.PageRankConstants_edgesContext ctx)
Visit a parse tree produced byGremlinParser.pageRankConstants_edges()
.- Specified by:
visitPageRankConstants_edges
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPageRankConstants_times
public T visitPageRankConstants_times(GremlinParser.PageRankConstants_timesContext ctx)
Visit a parse tree produced byGremlinParser.pageRankConstants_times()
.- Specified by:
visitPageRankConstants_times
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPageRankConstants_propertyName
public T visitPageRankConstants_propertyName(GremlinParser.PageRankConstants_propertyNameContext ctx)
Visit a parse tree produced byGremlinParser.pageRankConstants_propertyName()
.- Specified by:
visitPageRankConstants_propertyName
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPeerPressureConstants_edges
public T visitPeerPressureConstants_edges(GremlinParser.PeerPressureConstants_edgesContext ctx)
Visit a parse tree produced byGremlinParser.peerPressureConstants_edges()
.- Specified by:
visitPeerPressureConstants_edges
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPeerPressureConstants_times
public T visitPeerPressureConstants_times(GremlinParser.PeerPressureConstants_timesContext ctx)
Visit a parse tree produced byGremlinParser.peerPressureConstants_times()
.- Specified by:
visitPeerPressureConstants_times
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPeerPressureConstants_propertyName
public T visitPeerPressureConstants_propertyName(GremlinParser.PeerPressureConstants_propertyNameContext ctx)
Visit a parse tree produced byGremlinParser.peerPressureConstants_propertyName()
.- Specified by:
visitPeerPressureConstants_propertyName
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathConstants_target
public T visitShortestPathConstants_target(GremlinParser.ShortestPathConstants_targetContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathConstants_target()
.- Specified by:
visitShortestPathConstants_target
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathConstants_edges
public T visitShortestPathConstants_edges(GremlinParser.ShortestPathConstants_edgesContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathConstants_edges()
.- Specified by:
visitShortestPathConstants_edges
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathConstants_distance
public T visitShortestPathConstants_distance(GremlinParser.ShortestPathConstants_distanceContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathConstants_distance()
.- Specified by:
visitShortestPathConstants_distance
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathConstants_maxDistance
public T visitShortestPathConstants_maxDistance(GremlinParser.ShortestPathConstants_maxDistanceContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathConstants_maxDistance()
.- Specified by:
visitShortestPathConstants_maxDistance
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShortestPathConstants_includeEdges
public T visitShortestPathConstants_includeEdges(GremlinParser.ShortestPathConstants_includeEdgesContext ctx)
Visit a parse tree produced byGremlinParser.shortestPathConstants_includeEdges()
.- Specified by:
visitShortestPathConstants_includeEdges
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_tokens
public T visitWithOptionsConstants_tokens(GremlinParser.WithOptionsConstants_tokensContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_tokens()
.- Specified by:
visitWithOptionsConstants_tokens
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_none
public T visitWithOptionsConstants_none(GremlinParser.WithOptionsConstants_noneContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_none()
.- Specified by:
visitWithOptionsConstants_none
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_ids
public T visitWithOptionsConstants_ids(GremlinParser.WithOptionsConstants_idsContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_ids()
.- Specified by:
visitWithOptionsConstants_ids
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_labels
public T visitWithOptionsConstants_labels(GremlinParser.WithOptionsConstants_labelsContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_labels()
.- Specified by:
visitWithOptionsConstants_labels
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_keys
public T visitWithOptionsConstants_keys(GremlinParser.WithOptionsConstants_keysContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_keys()
.- Specified by:
visitWithOptionsConstants_keys
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_values
public T visitWithOptionsConstants_values(GremlinParser.WithOptionsConstants_valuesContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_values()
.- Specified by:
visitWithOptionsConstants_values
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_all
public T visitWithOptionsConstants_all(GremlinParser.WithOptionsConstants_allContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_all()
.- Specified by:
visitWithOptionsConstants_all
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_indexer
public T visitWithOptionsConstants_indexer(GremlinParser.WithOptionsConstants_indexerContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_indexer()
.- Specified by:
visitWithOptionsConstants_indexer
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_list
public T visitWithOptionsConstants_list(GremlinParser.WithOptionsConstants_listContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_list()
.- Specified by:
visitWithOptionsConstants_list
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWithOptionsConstants_map
public T visitWithOptionsConstants_map(GremlinParser.WithOptionsConstants_mapContext ctx)
Visit a parse tree produced byGremlinParser.withOptionsConstants_map()
.- Specified by:
visitWithOptionsConstants_map
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsConstants_reader
public T visitIoOptionsConstants_reader(GremlinParser.IoOptionsConstants_readerContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsConstants_reader()
.- Specified by:
visitIoOptionsConstants_reader
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsConstants_writer
public T visitIoOptionsConstants_writer(GremlinParser.IoOptionsConstants_writerContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsConstants_writer()
.- Specified by:
visitIoOptionsConstants_writer
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsConstants_gryo
public T visitIoOptionsConstants_gryo(GremlinParser.IoOptionsConstants_gryoContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsConstants_gryo()
.- Specified by:
visitIoOptionsConstants_gryo
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsConstants_graphson
public T visitIoOptionsConstants_graphson(GremlinParser.IoOptionsConstants_graphsonContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsConstants_graphson()
.- Specified by:
visitIoOptionsConstants_graphson
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIoOptionsConstants_graphml
public T visitIoOptionsConstants_graphml(GremlinParser.IoOptionsConstants_graphmlContext ctx)
Visit a parse tree produced byGremlinParser.ioOptionsConstants_graphml()
.- Specified by:
visitIoOptionsConstants_graphml
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralArgument
public T visitGenericLiteralArgument(GremlinParser.GenericLiteralArgumentContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralArgument()
.- Specified by:
visitGenericLiteralArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralListArgument
public T visitGenericLiteralListArgument(GremlinParser.GenericLiteralListArgumentContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralListArgument()
.- Specified by:
visitGenericLiteralListArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStructureVertexArgument
public T visitStructureVertexArgument(GremlinParser.StructureVertexArgumentContext ctx)
Visit a parse tree produced byGremlinParser.structureVertexArgument()
.- Specified by:
visitStructureVertexArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalDirectionArgument
public T visitTraversalDirectionArgument(GremlinParser.TraversalDirectionArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalDirectionArgument()
.- Specified by:
visitTraversalDirectionArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalOrderArgument
public T visitTraversalOrderArgument(GremlinParser.TraversalOrderArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalOrderArgument()
.- Specified by:
visitTraversalOrderArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalScopeArgument
public T visitTraversalScopeArgument(GremlinParser.TraversalScopeArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalScopeArgument()
.- Specified by:
visitTraversalScopeArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalTokenArgument
public T visitTraversalTokenArgument(GremlinParser.TraversalTokenArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalTokenArgument()
.- Specified by:
visitTraversalTokenArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalCardinalityArgument
public T visitTraversalCardinalityArgument(GremlinParser.TraversalCardinalityArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalCardinalityArgument()
.- Specified by:
visitTraversalCardinalityArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMergeArgument
public T visitTraversalMergeArgument(GremlinParser.TraversalMergeArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalMergeArgument()
.- Specified by:
visitTraversalMergeArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalPopArgument
public T visitTraversalPopArgument(GremlinParser.TraversalPopArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalPopArgument()
.- Specified by:
visitTraversalPopArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalColumnArgument
public T visitTraversalColumnArgument(GremlinParser.TraversalColumnArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalColumnArgument()
.- Specified by:
visitTraversalColumnArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalComparatorArgument
public T visitTraversalComparatorArgument(GremlinParser.TraversalComparatorArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalComparatorArgument()
.- Specified by:
visitTraversalComparatorArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalFunctionArgument
public T visitTraversalFunctionArgument(GremlinParser.TraversalFunctionArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalFunctionArgument()
.- Specified by:
visitTraversalFunctionArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalBiFunctionArgument
public T visitTraversalBiFunctionArgument(GremlinParser.TraversalBiFunctionArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalBiFunctionArgument()
.- Specified by:
visitTraversalBiFunctionArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalDTArgument
public T visitTraversalDTArgument(GremlinParser.TraversalDTArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalDTArgument()
.- Specified by:
visitTraversalDTArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalSackMethodArgument
public T visitTraversalSackMethodArgument(GremlinParser.TraversalSackMethodArgumentContext ctx)
Visit a parse tree produced byGremlinParser.traversalSackMethodArgument()
.- Specified by:
visitTraversalSackMethodArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralVarargs
public T visitGenericLiteralVarargs(GremlinParser.GenericLiteralVarargsContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralVarargs()
.- Specified by:
visitGenericLiteralVarargs
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralMapArgument
public T visitGenericLiteralMapArgument(GremlinParser.GenericLiteralMapArgumentContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralMapArgument()
.- Specified by:
visitGenericLiteralMapArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGenericLiteralMapNullableArgument
public T visitGenericLiteralMapNullableArgument(GremlinParser.GenericLiteralMapNullableArgumentContext ctx)
Visit a parse tree produced byGremlinParser.genericLiteralMapNullableArgument()
.- Specified by:
visitGenericLiteralMapNullableArgument
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStringLiteralVarargs
public T visitStringLiteralVarargs(GremlinParser.StringLiteralVarargsContext ctx)
Visit a parse tree produced byGremlinParser.stringLiteralVarargs()
.- Specified by:
visitStringLiteralVarargs
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTraversalMethod_option_Merge_Map_Cardinality
public T visitTraversalMethod_option_Merge_Map_Cardinality(GremlinParser.TraversalMethod_option_Merge_Map_CardinalityContext ctx)
Visit a parse tree produced by thetraversalMethod_option_Merge_Map_Cardinality
labeled alternative inGremlinParser.traversalMethod_option()
.- Specified by:
visitTraversalMethod_option_Merge_Map_Cardinality
in interfaceGremlinVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-