Package org.neo4j
Interface GQLVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
GQLBaseVisitor
public interface GQLVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byGQLParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitGqlProgram
T visitGqlProgram(GQLParser.GqlProgramContext ctx)
Visit a parse tree produced byGQLParser.gqlProgram().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProgramActivity
T visitProgramActivity(GQLParser.ProgramActivityContext ctx)
Visit a parse tree produced byGQLParser.programActivity().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionActivity
T visitSessionActivity(GQLParser.SessionActivityContext ctx)
Visit a parse tree produced byGQLParser.sessionActivity().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionActivity
T visitTransactionActivity(GQLParser.TransactionActivityContext ctx)
Visit a parse tree produced byGQLParser.transactionActivity().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndTransactionCommand
T visitEndTransactionCommand(GQLParser.EndTransactionCommandContext ctx)
Visit a parse tree produced byGQLParser.endTransactionCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetCommand
T visitSessionSetCommand(GQLParser.SessionSetCommandContext ctx)
Visit a parse tree produced byGQLParser.sessionSetCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetSchemaClause
T visitSessionSetSchemaClause(GQLParser.SessionSetSchemaClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetSchemaClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetGraphClause
T visitSessionSetGraphClause(GQLParser.SessionSetGraphClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetGraphClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetTimeZoneClause
T visitSessionSetTimeZoneClause(GQLParser.SessionSetTimeZoneClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetTimeZoneClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTimeZoneValue
T visitSetTimeZoneValue(GQLParser.SetTimeZoneValueContext ctx)
Visit a parse tree produced byGQLParser.setTimeZoneValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetParameterClause
T visitSessionSetParameterClause(GQLParser.SessionSetParameterClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetParameterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetGraphParameterClause
T visitSessionSetGraphParameterClause(GQLParser.SessionSetGraphParameterClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetGraphParameterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetBindingTableParameterClause
T visitSessionSetBindingTableParameterClause(GQLParser.SessionSetBindingTableParameterClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetBindingTableParameterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetValueParameterClause
T visitSessionSetValueParameterClause(GQLParser.SessionSetValueParameterClauseContext ctx)
Visit a parse tree produced byGQLParser.sessionSetValueParameterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionSetParameterName
T visitSessionSetParameterName(GQLParser.SessionSetParameterNameContext ctx)
Visit a parse tree produced byGQLParser.sessionSetParameterName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionResetCommand
T visitSessionResetCommand(GQLParser.SessionResetCommandContext ctx)
Visit a parse tree produced byGQLParser.sessionResetCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionResetArguments
T visitSessionResetArguments(GQLParser.SessionResetArgumentsContext ctx)
Visit a parse tree produced byGQLParser.sessionResetArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionCloseCommand
T visitSessionCloseCommand(GQLParser.SessionCloseCommandContext ctx)
Visit a parse tree produced byGQLParser.sessionCloseCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSessionParameterSpecification
T visitSessionParameterSpecification(GQLParser.SessionParameterSpecificationContext ctx)
Visit a parse tree produced byGQLParser.sessionParameterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartTransactionCommand
T visitStartTransactionCommand(GQLParser.StartTransactionCommandContext ctx)
Visit a parse tree produced byGQLParser.startTransactionCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionCharacteristics
T visitTransactionCharacteristics(GQLParser.TransactionCharacteristicsContext ctx)
Visit a parse tree produced byGQLParser.transactionCharacteristics().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionMode
T visitTransactionMode(GQLParser.TransactionModeContext ctx)
Visit a parse tree produced byGQLParser.transactionMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionAccessMode
T visitTransactionAccessMode(GQLParser.TransactionAccessModeContext ctx)
Visit a parse tree produced byGQLParser.transactionAccessMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackCommand
T visitRollbackCommand(GQLParser.RollbackCommandContext ctx)
Visit a parse tree produced byGQLParser.rollbackCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommitCommand
T visitCommitCommand(GQLParser.CommitCommandContext ctx)
Visit a parse tree produced byGQLParser.commitCommand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedProcedureSpecification
T visitNestedProcedureSpecification(GQLParser.NestedProcedureSpecificationContext ctx)
Visit a parse tree produced byGQLParser.nestedProcedureSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureSpecification
T visitProcedureSpecification(GQLParser.ProcedureSpecificationContext ctx)
Visit a parse tree produced byGQLParser.procedureSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedDataModifyingProcedureSpecification
T visitNestedDataModifyingProcedureSpecification(GQLParser.NestedDataModifyingProcedureSpecificationContext ctx)
Visit a parse tree produced byGQLParser.nestedDataModifyingProcedureSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedQuerySpecification
T visitNestedQuerySpecification(GQLParser.NestedQuerySpecificationContext ctx)
Visit a parse tree produced byGQLParser.nestedQuerySpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureBody
T visitProcedureBody(GQLParser.ProcedureBodyContext ctx)
Visit a parse tree produced byGQLParser.procedureBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingVariableDefinitionBlock
T visitBindingVariableDefinitionBlock(GQLParser.BindingVariableDefinitionBlockContext ctx)
Visit a parse tree produced byGQLParser.bindingVariableDefinitionBlock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingVariableDefinition
T visitBindingVariableDefinition(GQLParser.BindingVariableDefinitionContext ctx)
Visit a parse tree produced byGQLParser.bindingVariableDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementBlock
T visitStatementBlock(GQLParser.StatementBlockContext ctx)
Visit a parse tree produced byGQLParser.statementBlock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatement
T visitStatement(GQLParser.StatementContext ctx)
Visit a parse tree produced byGQLParser.statement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNextStatement
T visitNextStatement(GQLParser.NextStatementContext ctx)
Visit a parse tree produced byGQLParser.nextStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphVariableDefinition
T visitGraphVariableDefinition(GQLParser.GraphVariableDefinitionContext ctx)
Visit a parse tree produced byGQLParser.graphVariableDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptTypedGraphInitializer
T visitOptTypedGraphInitializer(GQLParser.OptTypedGraphInitializerContext ctx)
Visit a parse tree produced byGQLParser.optTypedGraphInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphInitializer
T visitGraphInitializer(GQLParser.GraphInitializerContext ctx)
Visit a parse tree produced byGQLParser.graphInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableVariableDefinition
T visitBindingTableVariableDefinition(GQLParser.BindingTableVariableDefinitionContext ctx)
Visit a parse tree produced byGQLParser.bindingTableVariableDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptTypedBindingTableInitializer
T visitOptTypedBindingTableInitializer(GQLParser.OptTypedBindingTableInitializerContext ctx)
Visit a parse tree produced byGQLParser.optTypedBindingTableInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableInitializer
T visitBindingTableInitializer(GQLParser.BindingTableInitializerContext ctx)
Visit a parse tree produced byGQLParser.bindingTableInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueVariableDefinition
T visitValueVariableDefinition(GQLParser.ValueVariableDefinitionContext ctx)
Visit a parse tree produced byGQLParser.valueVariableDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptTypedValueInitializer
T visitOptTypedValueInitializer(GQLParser.OptTypedValueInitializerContext ctx)
Visit a parse tree produced byGQLParser.optTypedValueInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueInitializer
T visitValueInitializer(GQLParser.ValueInitializerContext ctx)
Visit a parse tree produced byGQLParser.valueInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphExpression
T visitGraphExpression(GQLParser.GraphExpressionContext ctx)
Visit a parse tree produced byGQLParser.graphExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentGraph
T visitCurrentGraph(GQLParser.CurrentGraphContext ctx)
Visit a parse tree produced byGQLParser.currentGraph().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableExpression
T visitBindingTableExpression(GQLParser.BindingTableExpressionContext ctx)
Visit a parse tree produced byGQLParser.bindingTableExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedBindingTableQuerySpecification
T visitNestedBindingTableQuerySpecification(GQLParser.NestedBindingTableQuerySpecificationContext ctx)
Visit a parse tree produced byGQLParser.nestedBindingTableQuerySpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectExpressionPrimary
T visitObjectExpressionPrimary(GQLParser.ObjectExpressionPrimaryContext ctx)
Visit a parse tree produced byGQLParser.objectExpressionPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLinearCatalogModifyingStatement
T visitLinearCatalogModifyingStatement(GQLParser.LinearCatalogModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.linearCatalogModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleCatalogModifyingStatement
T visitSimpleCatalogModifyingStatement(GQLParser.SimpleCatalogModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleCatalogModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveCatalogModifyingStatement
T visitPrimitiveCatalogModifyingStatement(GQLParser.PrimitiveCatalogModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.primitiveCatalogModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSchemaStatement
T visitCreateSchemaStatement(GQLParser.CreateSchemaStatementContext ctx)
Visit a parse tree produced byGQLParser.createSchemaStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSchemaStatement
T visitDropSchemaStatement(GQLParser.DropSchemaStatementContext ctx)
Visit a parse tree produced byGQLParser.dropSchemaStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateGraphStatement
T visitCreateGraphStatement(GQLParser.CreateGraphStatementContext ctx)
Visit a parse tree produced byGQLParser.createGraphStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenGraphType
T visitOpenGraphType(GQLParser.OpenGraphTypeContext ctx)
Visit a parse tree produced byGQLParser.openGraphType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOfGraphType
T visitOfGraphType(GQLParser.OfGraphTypeContext ctx)
Visit a parse tree produced byGQLParser.ofGraphType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphTypeLikeGraph
T visitGraphTypeLikeGraph(GQLParser.GraphTypeLikeGraphContext ctx)
Visit a parse tree produced byGQLParser.graphTypeLikeGraph().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphSource
T visitGraphSource(GQLParser.GraphSourceContext ctx)
Visit a parse tree produced byGQLParser.graphSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropGraphStatement
T visitDropGraphStatement(GQLParser.DropGraphStatementContext ctx)
Visit a parse tree produced byGQLParser.dropGraphStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateGraphTypeStatement
T visitCreateGraphTypeStatement(GQLParser.CreateGraphTypeStatementContext ctx)
Visit a parse tree produced byGQLParser.createGraphTypeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphTypeSource
T visitGraphTypeSource(GQLParser.GraphTypeSourceContext ctx)
Visit a parse tree produced byGQLParser.graphTypeSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyOfGraphType
T visitCopyOfGraphType(GQLParser.CopyOfGraphTypeContext ctx)
Visit a parse tree produced byGQLParser.copyOfGraphType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropGraphTypeStatement
T visitDropGraphTypeStatement(GQLParser.DropGraphTypeStatementContext ctx)
Visit a parse tree produced byGQLParser.dropGraphTypeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallCatalogModifyingProcedureStatement
T visitCallCatalogModifyingProcedureStatement(GQLParser.CallCatalogModifyingProcedureStatementContext ctx)
Visit a parse tree produced byGQLParser.callCatalogModifyingProcedureStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLinearDataModifyingStatement
T visitLinearDataModifyingStatement(GQLParser.LinearDataModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.linearDataModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedLinearDataModifyingStatement
T visitFocusedLinearDataModifyingStatement(GQLParser.FocusedLinearDataModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.focusedLinearDataModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedLinearDataModifyingStatementBody
T visitFocusedLinearDataModifyingStatementBody(GQLParser.FocusedLinearDataModifyingStatementBodyContext ctx)
Visit a parse tree produced byGQLParser.focusedLinearDataModifyingStatementBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedNestedDataModifyingProcedureSpecification
T visitFocusedNestedDataModifyingProcedureSpecification(GQLParser.FocusedNestedDataModifyingProcedureSpecificationContext ctx)
Visit a parse tree produced byGQLParser.focusedNestedDataModifyingProcedureSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAmbientLinearDataModifyingStatement
T visitAmbientLinearDataModifyingStatement(GQLParser.AmbientLinearDataModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.ambientLinearDataModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAmbientLinearDataModifyingStatementBody
T visitAmbientLinearDataModifyingStatementBody(GQLParser.AmbientLinearDataModifyingStatementBodyContext ctx)
Visit a parse tree produced byGQLParser.ambientLinearDataModifyingStatementBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleLinearDataAccessingStatement
T visitSimpleLinearDataAccessingStatement(GQLParser.SimpleLinearDataAccessingStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleLinearDataAccessingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDataAccessingStatement
T visitSimpleDataAccessingStatement(GQLParser.SimpleDataAccessingStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleDataAccessingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDataModifyingStatement
T visitSimpleDataModifyingStatement(GQLParser.SimpleDataModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleDataModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveDataModifyingStatement
T visitPrimitiveDataModifyingStatement(GQLParser.PrimitiveDataModifyingStatementContext ctx)
Visit a parse tree produced byGQLParser.primitiveDataModifyingStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertStatement
T visitInsertStatement(GQLParser.InsertStatementContext ctx)
Visit a parse tree produced byGQLParser.insertStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetStatement
T visitSetStatement(GQLParser.SetStatementContext ctx)
Visit a parse tree produced byGQLParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetItemList
T visitSetItemList(GQLParser.SetItemListContext ctx)
Visit a parse tree produced byGQLParser.setItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetItem
T visitSetItem(GQLParser.SetItemContext ctx)
Visit a parse tree produced byGQLParser.setItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetPropertyItem
T visitSetPropertyItem(GQLParser.SetPropertyItemContext ctx)
Visit a parse tree produced byGQLParser.setPropertyItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAllPropertiesItem
T visitSetAllPropertiesItem(GQLParser.SetAllPropertiesItemContext ctx)
Visit a parse tree produced byGQLParser.setAllPropertiesItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetLabelItem
T visitSetLabelItem(GQLParser.SetLabelItemContext ctx)
Visit a parse tree produced byGQLParser.setLabelItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRemoveStatement
T visitRemoveStatement(GQLParser.RemoveStatementContext ctx)
Visit a parse tree produced byGQLParser.removeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRemoveItemList
T visitRemoveItemList(GQLParser.RemoveItemListContext ctx)
Visit a parse tree produced byGQLParser.removeItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRemoveItem
T visitRemoveItem(GQLParser.RemoveItemContext ctx)
Visit a parse tree produced byGQLParser.removeItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRemovePropertyItem
T visitRemovePropertyItem(GQLParser.RemovePropertyItemContext ctx)
Visit a parse tree produced byGQLParser.removePropertyItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRemoveLabelItem
T visitRemoveLabelItem(GQLParser.RemoveLabelItemContext ctx)
Visit a parse tree produced byGQLParser.removeLabelItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeleteStatement
T visitDeleteStatement(GQLParser.DeleteStatementContext ctx)
Visit a parse tree produced byGQLParser.deleteStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeleteItemList
T visitDeleteItemList(GQLParser.DeleteItemListContext ctx)
Visit a parse tree produced byGQLParser.deleteItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeleteItem
T visitDeleteItem(GQLParser.DeleteItemContext ctx)
Visit a parse tree produced byGQLParser.deleteItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallDataModifyingProcedureStatement
T visitCallDataModifyingProcedureStatement(GQLParser.CallDataModifyingProcedureStatementContext ctx)
Visit a parse tree produced byGQLParser.callDataModifyingProcedureStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompositeQueryStatement
T visitCompositeQueryStatement(GQLParser.CompositeQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.compositeQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompositeQueryExpression
T visitCompositeQueryExpression(GQLParser.CompositeQueryExpressionContext ctx)
Visit a parse tree produced byGQLParser.compositeQueryExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryConjunction
T visitQueryConjunction(GQLParser.QueryConjunctionContext ctx)
Visit a parse tree produced byGQLParser.queryConjunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetOperator
T visitSetOperator(GQLParser.SetOperatorContext ctx)
Visit a parse tree produced byGQLParser.setOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompositeQueryPrimary
T visitCompositeQueryPrimary(GQLParser.CompositeQueryPrimaryContext ctx)
Visit a parse tree produced byGQLParser.compositeQueryPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLinearQueryStatement
T visitLinearQueryStatement(GQLParser.LinearQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.linearQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedLinearQueryStatement
T visitFocusedLinearQueryStatement(GQLParser.FocusedLinearQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.focusedLinearQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedLinearQueryStatementPart
T visitFocusedLinearQueryStatementPart(GQLParser.FocusedLinearQueryStatementPartContext ctx)
Visit a parse tree produced byGQLParser.focusedLinearQueryStatementPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedLinearQueryAndPrimitiveResultStatementPart
T visitFocusedLinearQueryAndPrimitiveResultStatementPart(GQLParser.FocusedLinearQueryAndPrimitiveResultStatementPartContext ctx)
Visit a parse tree produced byGQLParser.focusedLinearQueryAndPrimitiveResultStatementPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedPrimitiveResultStatement
T visitFocusedPrimitiveResultStatement(GQLParser.FocusedPrimitiveResultStatementContext ctx)
Visit a parse tree produced byGQLParser.focusedPrimitiveResultStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFocusedNestedQuerySpecification
T visitFocusedNestedQuerySpecification(GQLParser.FocusedNestedQuerySpecificationContext ctx)
Visit a parse tree produced byGQLParser.focusedNestedQuerySpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAmbientLinearQueryStatement
T visitAmbientLinearQueryStatement(GQLParser.AmbientLinearQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.ambientLinearQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleLinearQueryStatement
T visitSimpleLinearQueryStatement(GQLParser.SimpleLinearQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleLinearQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleQueryStatement
T visitSimpleQueryStatement(GQLParser.SimpleQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveQueryStatement
T visitPrimitiveQueryStatement(GQLParser.PrimitiveQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.primitiveQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatchStatement
T visitMatchStatement(GQLParser.MatchStatementContext ctx)
Visit a parse tree produced byGQLParser.matchStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleMatchStatement
T visitSimpleMatchStatement(GQLParser.SimpleMatchStatementContext ctx)
Visit a parse tree produced byGQLParser.simpleMatchStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionalMatchStatement
T visitOptionalMatchStatement(GQLParser.OptionalMatchStatementContext ctx)
Visit a parse tree produced byGQLParser.optionalMatchStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionalOperand
T visitOptionalOperand(GQLParser.OptionalOperandContext ctx)
Visit a parse tree produced byGQLParser.optionalOperand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatchStatementBlock
T visitMatchStatementBlock(GQLParser.MatchStatementBlockContext ctx)
Visit a parse tree produced byGQLParser.matchStatementBlock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallQueryStatement
T visitCallQueryStatement(GQLParser.CallQueryStatementContext ctx)
Visit a parse tree produced byGQLParser.callQueryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFilterStatement
T visitFilterStatement(GQLParser.FilterStatementContext ctx)
Visit a parse tree produced byGQLParser.filterStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLetStatement
T visitLetStatement(GQLParser.LetStatementContext ctx)
Visit a parse tree produced byGQLParser.letStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLetVariableDefinitionList
T visitLetVariableDefinitionList(GQLParser.LetVariableDefinitionListContext ctx)
Visit a parse tree produced byGQLParser.letVariableDefinitionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLetVariableDefinition
T visitLetVariableDefinition(GQLParser.LetVariableDefinitionContext ctx)
Visit a parse tree produced byGQLParser.letVariableDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForStatement
T visitForStatement(GQLParser.ForStatementContext ctx)
Visit a parse tree produced byGQLParser.forStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForItem
T visitForItem(GQLParser.ForItemContext ctx)
Visit a parse tree produced byGQLParser.forItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForItemAlias
T visitForItemAlias(GQLParser.ForItemAliasContext ctx)
Visit a parse tree produced byGQLParser.forItemAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForItemSource
T visitForItemSource(GQLParser.ForItemSourceContext ctx)
Visit a parse tree produced byGQLParser.forItemSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForOrdinalityOrOffset
T visitForOrdinalityOrOffset(GQLParser.ForOrdinalityOrOffsetContext ctx)
Visit a parse tree produced byGQLParser.forOrdinalityOrOffset().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByAndPageStatement
T visitOrderByAndPageStatement(GQLParser.OrderByAndPageStatementContext ctx)
Visit a parse tree produced byGQLParser.orderByAndPageStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveResultStatement
T visitPrimitiveResultStatement(GQLParser.PrimitiveResultStatementContext ctx)
Visit a parse tree produced byGQLParser.primitiveResultStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnStatement
T visitReturnStatement(GQLParser.ReturnStatementContext ctx)
Visit a parse tree produced byGQLParser.returnStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnStatementBody
T visitReturnStatementBody(GQLParser.ReturnStatementBodyContext ctx)
Visit a parse tree produced byGQLParser.returnStatementBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnItemList
T visitReturnItemList(GQLParser.ReturnItemListContext ctx)
Visit a parse tree produced byGQLParser.returnItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnItem
T visitReturnItem(GQLParser.ReturnItemContext ctx)
Visit a parse tree produced byGQLParser.returnItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnItemAlias
T visitReturnItemAlias(GQLParser.ReturnItemAliasContext ctx)
Visit a parse tree produced byGQLParser.returnItemAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectStatement
T visitSelectStatement(GQLParser.SelectStatementContext ctx)
Visit a parse tree produced byGQLParser.selectStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectItemList
T visitSelectItemList(GQLParser.SelectItemListContext ctx)
Visit a parse tree produced byGQLParser.selectItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectItem
T visitSelectItem(GQLParser.SelectItemContext ctx)
Visit a parse tree produced byGQLParser.selectItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectItemAlias
T visitSelectItemAlias(GQLParser.SelectItemAliasContext ctx)
Visit a parse tree produced byGQLParser.selectItemAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
T visitHavingClause(GQLParser.HavingClauseContext ctx)
Visit a parse tree produced byGQLParser.havingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectStatementBody
T visitSelectStatementBody(GQLParser.SelectStatementBodyContext ctx)
Visit a parse tree produced byGQLParser.selectStatementBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectGraphMatchList
T visitSelectGraphMatchList(GQLParser.SelectGraphMatchListContext ctx)
Visit a parse tree produced byGQLParser.selectGraphMatchList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectGraphMatch
T visitSelectGraphMatch(GQLParser.SelectGraphMatchContext ctx)
Visit a parse tree produced byGQLParser.selectGraphMatch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectQuerySpecification
T visitSelectQuerySpecification(GQLParser.SelectQuerySpecificationContext ctx)
Visit a parse tree produced byGQLParser.selectQuerySpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallProcedureStatement
T visitCallProcedureStatement(GQLParser.CallProcedureStatementContext ctx)
Visit a parse tree produced byGQLParser.callProcedureStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureCall
T visitProcedureCall(GQLParser.ProcedureCallContext ctx)
Visit a parse tree produced byGQLParser.procedureCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInlineProcedureCall
T visitInlineProcedureCall(GQLParser.InlineProcedureCallContext ctx)
Visit a parse tree produced byGQLParser.inlineProcedureCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableScopeClause
T visitVariableScopeClause(GQLParser.VariableScopeClauseContext ctx)
Visit a parse tree produced byGQLParser.variableScopeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingVariableReferenceList
T visitBindingVariableReferenceList(GQLParser.BindingVariableReferenceListContext ctx)
Visit a parse tree produced byGQLParser.bindingVariableReferenceList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNamedProcedureCall
T visitNamedProcedureCall(GQLParser.NamedProcedureCallContext ctx)
Visit a parse tree produced byGQLParser.namedProcedureCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureArgumentList
T visitProcedureArgumentList(GQLParser.ProcedureArgumentListContext ctx)
Visit a parse tree produced byGQLParser.procedureArgumentList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureArgument
T visitProcedureArgument(GQLParser.ProcedureArgumentContext ctx)
Visit a parse tree produced byGQLParser.procedureArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtSchemaClause
T visitAtSchemaClause(GQLParser.AtSchemaClauseContext ctx)
Visit a parse tree produced byGQLParser.atSchemaClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUseGraphClause
T visitUseGraphClause(GQLParser.UseGraphClauseContext ctx)
Visit a parse tree produced byGQLParser.useGraphClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPatternBindingTable
T visitGraphPatternBindingTable(GQLParser.GraphPatternBindingTableContext ctx)
Visit a parse tree produced byGQLParser.graphPatternBindingTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPatternYieldClause
T visitGraphPatternYieldClause(GQLParser.GraphPatternYieldClauseContext ctx)
Visit a parse tree produced byGQLParser.graphPatternYieldClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPatternYieldItemList
T visitGraphPatternYieldItemList(GQLParser.GraphPatternYieldItemListContext ctx)
Visit a parse tree produced byGQLParser.graphPatternYieldItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPatternYieldItem
T visitGraphPatternYieldItem(GQLParser.GraphPatternYieldItemContext ctx)
Visit a parse tree produced byGQLParser.graphPatternYieldItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPattern
T visitGraphPattern(GQLParser.GraphPatternContext ctx)
Visit a parse tree produced byGQLParser.graphPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatchMode
T visitMatchMode(GQLParser.MatchModeContext ctx)
Visit a parse tree produced byGQLParser.matchMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepeatableElementsMatchMode
T visitRepeatableElementsMatchMode(GQLParser.RepeatableElementsMatchModeContext ctx)
Visit a parse tree produced byGQLParser.repeatableElementsMatchMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDifferentEdgesMatchMode
T visitDifferentEdgesMatchMode(GQLParser.DifferentEdgesMatchModeContext ctx)
Visit a parse tree produced byGQLParser.differentEdgesMatchMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementBindingsOrElements
T visitElementBindingsOrElements(GQLParser.ElementBindingsOrElementsContext ctx)
Visit a parse tree produced byGQLParser.elementBindingsOrElements().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeBindingsOrEdges
T visitEdgeBindingsOrEdges(GQLParser.EdgeBindingsOrEdgesContext ctx)
Visit a parse tree produced byGQLParser.edgeBindingsOrEdges().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPatternList
T visitPathPatternList(GQLParser.PathPatternListContext ctx)
Visit a parse tree produced byGQLParser.pathPatternList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPattern
T visitPathPattern(GQLParser.PathPatternContext ctx)
Visit a parse tree produced byGQLParser.pathPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathVariableDeclaration
T visitPathVariableDeclaration(GQLParser.PathVariableDeclarationContext ctx)
Visit a parse tree produced byGQLParser.pathVariableDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeepClause
T visitKeepClause(GQLParser.KeepClauseContext ctx)
Visit a parse tree produced byGQLParser.keepClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPatternWhereClause
T visitGraphPatternWhereClause(GQLParser.GraphPatternWhereClauseContext ctx)
Visit a parse tree produced byGQLParser.graphPatternWhereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertGraphPattern
T visitInsertGraphPattern(GQLParser.InsertGraphPatternContext ctx)
Visit a parse tree produced byGQLParser.insertGraphPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertPathPatternList
T visitInsertPathPatternList(GQLParser.InsertPathPatternListContext ctx)
Visit a parse tree produced byGQLParser.insertPathPatternList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertPathPattern
T visitInsertPathPattern(GQLParser.InsertPathPatternContext ctx)
Visit a parse tree produced byGQLParser.insertPathPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertNodePattern
T visitInsertNodePattern(GQLParser.InsertNodePatternContext ctx)
Visit a parse tree produced byGQLParser.insertNodePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertEdgePattern
T visitInsertEdgePattern(GQLParser.InsertEdgePatternContext ctx)
Visit a parse tree produced byGQLParser.insertEdgePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertEdgePointingLeft
T visitInsertEdgePointingLeft(GQLParser.InsertEdgePointingLeftContext ctx)
Visit a parse tree produced byGQLParser.insertEdgePointingLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertEdgePointingRight
T visitInsertEdgePointingRight(GQLParser.InsertEdgePointingRightContext ctx)
Visit a parse tree produced byGQLParser.insertEdgePointingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertEdgeUndirected
T visitInsertEdgeUndirected(GQLParser.InsertEdgeUndirectedContext ctx)
Visit a parse tree produced byGQLParser.insertEdgeUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertElementPatternFiller
T visitInsertElementPatternFiller(GQLParser.InsertElementPatternFillerContext ctx)
Visit a parse tree produced byGQLParser.insertElementPatternFiller().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelAndPropertySetSpecification
T visitLabelAndPropertySetSpecification(GQLParser.LabelAndPropertySetSpecificationContext ctx)
Visit a parse tree produced byGQLParser.labelAndPropertySetSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPatternPrefix
T visitPathPatternPrefix(GQLParser.PathPatternPrefixContext ctx)
Visit a parse tree produced byGQLParser.pathPatternPrefix().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathModePrefix
T visitPathModePrefix(GQLParser.PathModePrefixContext ctx)
Visit a parse tree produced byGQLParser.pathModePrefix().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathMode
T visitPathMode(GQLParser.PathModeContext ctx)
Visit a parse tree produced byGQLParser.pathMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathSearchPrefix
T visitPathSearchPrefix(GQLParser.PathSearchPrefixContext ctx)
Visit a parse tree produced byGQLParser.pathSearchPrefix().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAllPathSearch
T visitAllPathSearch(GQLParser.AllPathSearchContext ctx)
Visit a parse tree produced byGQLParser.allPathSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathOrPaths
T visitPathOrPaths(GQLParser.PathOrPathsContext ctx)
Visit a parse tree produced byGQLParser.pathOrPaths().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyPathSearch
T visitAnyPathSearch(GQLParser.AnyPathSearchContext ctx)
Visit a parse tree produced byGQLParser.anyPathSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberOfPaths
T visitNumberOfPaths(GQLParser.NumberOfPathsContext ctx)
Visit a parse tree produced byGQLParser.numberOfPaths().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShortestPathSearch
T visitShortestPathSearch(GQLParser.ShortestPathSearchContext ctx)
Visit a parse tree produced byGQLParser.shortestPathSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAllShortestPathSearch
T visitAllShortestPathSearch(GQLParser.AllShortestPathSearchContext ctx)
Visit a parse tree produced byGQLParser.allShortestPathSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyShortestPathSearch
T visitAnyShortestPathSearch(GQLParser.AnyShortestPathSearchContext ctx)
Visit a parse tree produced byGQLParser.anyShortestPathSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCountedShortestPathSearch
T visitCountedShortestPathSearch(GQLParser.CountedShortestPathSearchContext ctx)
Visit a parse tree produced byGQLParser.countedShortestPathSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCountedShortestGroupSearch
T visitCountedShortestGroupSearch(GQLParser.CountedShortestGroupSearchContext ctx)
Visit a parse tree produced byGQLParser.countedShortestGroupSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberOfGroups
T visitNumberOfGroups(GQLParser.NumberOfGroupsContext ctx)
Visit a parse tree produced byGQLParser.numberOfGroups().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPpePathTerm
T visitPpePathTerm(GQLParser.PpePathTermContext ctx)
Visit a parse tree produced by theppePathTermlabeled alternative inGQLParser.pathPatternExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPpeMultisetAlternation
T visitPpeMultisetAlternation(GQLParser.PpeMultisetAlternationContext ctx)
Visit a parse tree produced by theppeMultisetAlternationlabeled alternative inGQLParser.pathPatternExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPpePatternUnion
T visitPpePatternUnion(GQLParser.PpePatternUnionContext ctx)
Visit a parse tree produced by theppePatternUnionlabeled alternative inGQLParser.pathPatternExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathTerm
T visitPathTerm(GQLParser.PathTermContext ctx)
Visit a parse tree produced byGQLParser.pathTerm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPfPathPrimary
T visitPfPathPrimary(GQLParser.PfPathPrimaryContext ctx)
Visit a parse tree produced by thepfPathPrimarylabeled alternative inGQLParser.pathFactor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPfQuantifiedPathPrimary
T visitPfQuantifiedPathPrimary(GQLParser.PfQuantifiedPathPrimaryContext ctx)
Visit a parse tree produced by thepfQuantifiedPathPrimarylabeled alternative inGQLParser.pathFactor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPfQuestionedPathPrimary
T visitPfQuestionedPathPrimary(GQLParser.PfQuestionedPathPrimaryContext ctx)
Visit a parse tree produced by thepfQuestionedPathPrimarylabeled alternative inGQLParser.pathFactor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPpElementPattern
T visitPpElementPattern(GQLParser.PpElementPatternContext ctx)
Visit a parse tree produced by theppElementPatternlabeled alternative inGQLParser.pathPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPpParenthesizedPathPatternExpression
T visitPpParenthesizedPathPatternExpression(GQLParser.PpParenthesizedPathPatternExpressionContext ctx)
Visit a parse tree produced by theppParenthesizedPathPatternExpressionlabeled alternative inGQLParser.pathPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPpSimplifiedPathPatternExpression
T visitPpSimplifiedPathPatternExpression(GQLParser.PpSimplifiedPathPatternExpressionContext ctx)
Visit a parse tree produced by theppSimplifiedPathPatternExpressionlabeled alternative inGQLParser.pathPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementPattern
T visitElementPattern(GQLParser.ElementPatternContext ctx)
Visit a parse tree produced byGQLParser.elementPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodePattern
T visitNodePattern(GQLParser.NodePatternContext ctx)
Visit a parse tree produced byGQLParser.nodePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementPatternFiller
T visitElementPatternFiller(GQLParser.ElementPatternFillerContext ctx)
Visit a parse tree produced byGQLParser.elementPatternFiller().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementVariableDeclaration
T visitElementVariableDeclaration(GQLParser.ElementVariableDeclarationContext ctx)
Visit a parse tree produced byGQLParser.elementVariableDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsLabelExpression
T visitIsLabelExpression(GQLParser.IsLabelExpressionContext ctx)
Visit a parse tree produced byGQLParser.isLabelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsOrColon
T visitIsOrColon(GQLParser.IsOrColonContext ctx)
Visit a parse tree produced byGQLParser.isOrColon().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementPatternPredicate
T visitElementPatternPredicate(GQLParser.ElementPatternPredicateContext ctx)
Visit a parse tree produced byGQLParser.elementPatternPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementPatternWhereClause
T visitElementPatternWhereClause(GQLParser.ElementPatternWhereClauseContext ctx)
Visit a parse tree produced byGQLParser.elementPatternWhereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementPropertySpecification
T visitElementPropertySpecification(GQLParser.ElementPropertySpecificationContext ctx)
Visit a parse tree produced byGQLParser.elementPropertySpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyKeyValuePairList
T visitPropertyKeyValuePairList(GQLParser.PropertyKeyValuePairListContext ctx)
Visit a parse tree produced byGQLParser.propertyKeyValuePairList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyKeyValuePair
T visitPropertyKeyValuePair(GQLParser.PropertyKeyValuePairContext ctx)
Visit a parse tree produced byGQLParser.propertyKeyValuePair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgePattern
T visitEdgePattern(GQLParser.EdgePatternContext ctx)
Visit a parse tree produced byGQLParser.edgePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgePattern
T visitFullEdgePattern(GQLParser.FullEdgePatternContext ctx)
Visit a parse tree produced byGQLParser.fullEdgePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgePointingLeft
T visitFullEdgePointingLeft(GQLParser.FullEdgePointingLeftContext ctx)
Visit a parse tree produced byGQLParser.fullEdgePointingLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgeUndirected
T visitFullEdgeUndirected(GQLParser.FullEdgeUndirectedContext ctx)
Visit a parse tree produced byGQLParser.fullEdgeUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgePointingRight
T visitFullEdgePointingRight(GQLParser.FullEdgePointingRightContext ctx)
Visit a parse tree produced byGQLParser.fullEdgePointingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgeLeftOrUndirected
T visitFullEdgeLeftOrUndirected(GQLParser.FullEdgeLeftOrUndirectedContext ctx)
Visit a parse tree produced byGQLParser.fullEdgeLeftOrUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgeUndirectedOrRight
T visitFullEdgeUndirectedOrRight(GQLParser.FullEdgeUndirectedOrRightContext ctx)
Visit a parse tree produced byGQLParser.fullEdgeUndirectedOrRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgeLeftOrRight
T visitFullEdgeLeftOrRight(GQLParser.FullEdgeLeftOrRightContext ctx)
Visit a parse tree produced byGQLParser.fullEdgeLeftOrRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullEdgeAnyDirection
T visitFullEdgeAnyDirection(GQLParser.FullEdgeAnyDirectionContext ctx)
Visit a parse tree produced byGQLParser.fullEdgeAnyDirection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbbreviatedEdgePattern
T visitAbbreviatedEdgePattern(GQLParser.AbbreviatedEdgePatternContext ctx)
Visit a parse tree produced byGQLParser.abbreviatedEdgePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesizedPathPatternExpression
T visitParenthesizedPathPatternExpression(GQLParser.ParenthesizedPathPatternExpressionContext ctx)
Visit a parse tree produced byGQLParser.parenthesizedPathPatternExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubpathVariableDeclaration
T visitSubpathVariableDeclaration(GQLParser.SubpathVariableDeclarationContext ctx)
Visit a parse tree produced byGQLParser.subpathVariableDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesizedPathPatternWhereClause
T visitParenthesizedPathPatternWhereClause(GQLParser.ParenthesizedPathPatternWhereClauseContext ctx)
Visit a parse tree produced byGQLParser.parenthesizedPathPatternWhereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelExpressionNegation
T visitLabelExpressionNegation(GQLParser.LabelExpressionNegationContext ctx)
Visit a parse tree produced by thelabelExpressionNegationlabeled alternative inGQLParser.labelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelExpressionDisjunction
T visitLabelExpressionDisjunction(GQLParser.LabelExpressionDisjunctionContext ctx)
Visit a parse tree produced by thelabelExpressionDisjunctionlabeled alternative inGQLParser.labelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelExpressionParenthesized
T visitLabelExpressionParenthesized(GQLParser.LabelExpressionParenthesizedContext ctx)
Visit a parse tree produced by thelabelExpressionParenthesizedlabeled alternative inGQLParser.labelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelExpressionWildcard
T visitLabelExpressionWildcard(GQLParser.LabelExpressionWildcardContext ctx)
Visit a parse tree produced by thelabelExpressionWildcardlabeled alternative inGQLParser.labelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelExpressionConjunction
T visitLabelExpressionConjunction(GQLParser.LabelExpressionConjunctionContext ctx)
Visit a parse tree produced by thelabelExpressionConjunctionlabeled alternative inGQLParser.labelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelExpressionName
T visitLabelExpressionName(GQLParser.LabelExpressionNameContext ctx)
Visit a parse tree produced by thelabelExpressionNamelabeled alternative inGQLParser.labelExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathVariableReference
T visitPathVariableReference(GQLParser.PathVariableReferenceContext ctx)
Visit a parse tree produced byGQLParser.pathVariableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementVariableReference
T visitElementVariableReference(GQLParser.ElementVariableReferenceContext ctx)
Visit a parse tree produced byGQLParser.elementVariableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphPatternQuantifier
T visitGraphPatternQuantifier(GQLParser.GraphPatternQuantifierContext ctx)
Visit a parse tree produced byGQLParser.graphPatternQuantifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFixedQuantifier
T visitFixedQuantifier(GQLParser.FixedQuantifierContext ctx)
Visit a parse tree produced byGQLParser.fixedQuantifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralQuantifier
T visitGeneralQuantifier(GQLParser.GeneralQuantifierContext ctx)
Visit a parse tree produced byGQLParser.generalQuantifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLowerBound
T visitLowerBound(GQLParser.LowerBoundContext ctx)
Visit a parse tree produced byGQLParser.lowerBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpperBound
T visitUpperBound(GQLParser.UpperBoundContext ctx)
Visit a parse tree produced byGQLParser.upperBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedPathPatternExpression
T visitSimplifiedPathPatternExpression(GQLParser.SimplifiedPathPatternExpressionContext ctx)
Visit a parse tree produced byGQLParser.simplifiedPathPatternExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingLeft
T visitSimplifiedDefaultingLeft(GQLParser.SimplifiedDefaultingLeftContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingUndirected
T visitSimplifiedDefaultingUndirected(GQLParser.SimplifiedDefaultingUndirectedContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingRight
T visitSimplifiedDefaultingRight(GQLParser.SimplifiedDefaultingRightContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingLeftOrUndirected
T visitSimplifiedDefaultingLeftOrUndirected(GQLParser.SimplifiedDefaultingLeftOrUndirectedContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingLeftOrUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingUndirectedOrRight
T visitSimplifiedDefaultingUndirectedOrRight(GQLParser.SimplifiedDefaultingUndirectedOrRightContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingUndirectedOrRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingLeftOrRight
T visitSimplifiedDefaultingLeftOrRight(GQLParser.SimplifiedDefaultingLeftOrRightContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingLeftOrRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDefaultingAnyDirection
T visitSimplifiedDefaultingAnyDirection(GQLParser.SimplifiedDefaultingAnyDirectionContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDefaultingAnyDirection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedContents
T visitSimplifiedContents(GQLParser.SimplifiedContentsContext ctx)
Visit a parse tree produced byGQLParser.simplifiedContents().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedPathUnion
T visitSimplifiedPathUnion(GQLParser.SimplifiedPathUnionContext ctx)
Visit a parse tree produced byGQLParser.simplifiedPathUnion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedMultisetAlternation
T visitSimplifiedMultisetAlternation(GQLParser.SimplifiedMultisetAlternationContext ctx)
Visit a parse tree produced byGQLParser.simplifiedMultisetAlternation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedFactorLowLabel
T visitSimplifiedFactorLowLabel(GQLParser.SimplifiedFactorLowLabelContext ctx)
Visit a parse tree produced by thesimplifiedFactorLowLabellabeled alternative inGQLParser.simplifiedTerm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedConcatenationLabel
T visitSimplifiedConcatenationLabel(GQLParser.SimplifiedConcatenationLabelContext ctx)
Visit a parse tree produced by thesimplifiedConcatenationLabellabeled alternative inGQLParser.simplifiedTerm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedConjunctionLabel
T visitSimplifiedConjunctionLabel(GQLParser.SimplifiedConjunctionLabelContext ctx)
Visit a parse tree produced by thesimplifiedConjunctionLabellabeled alternative inGQLParser.simplifiedFactorLow().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedFactorHighLabel
T visitSimplifiedFactorHighLabel(GQLParser.SimplifiedFactorHighLabelContext ctx)
Visit a parse tree produced by thesimplifiedFactorHighLabellabeled alternative inGQLParser.simplifiedFactorLow().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedFactorHigh
T visitSimplifiedFactorHigh(GQLParser.SimplifiedFactorHighContext ctx)
Visit a parse tree produced byGQLParser.simplifiedFactorHigh().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedQuantified
T visitSimplifiedQuantified(GQLParser.SimplifiedQuantifiedContext ctx)
Visit a parse tree produced byGQLParser.simplifiedQuantified().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedQuestioned
T visitSimplifiedQuestioned(GQLParser.SimplifiedQuestionedContext ctx)
Visit a parse tree produced byGQLParser.simplifiedQuestioned().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedTertiary
T visitSimplifiedTertiary(GQLParser.SimplifiedTertiaryContext ctx)
Visit a parse tree produced byGQLParser.simplifiedTertiary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedDirectionOverride
T visitSimplifiedDirectionOverride(GQLParser.SimplifiedDirectionOverrideContext ctx)
Visit a parse tree produced byGQLParser.simplifiedDirectionOverride().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideLeft
T visitSimplifiedOverrideLeft(GQLParser.SimplifiedOverrideLeftContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideUndirected
T visitSimplifiedOverrideUndirected(GQLParser.SimplifiedOverrideUndirectedContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideRight
T visitSimplifiedOverrideRight(GQLParser.SimplifiedOverrideRightContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideLeftOrUndirected
T visitSimplifiedOverrideLeftOrUndirected(GQLParser.SimplifiedOverrideLeftOrUndirectedContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideLeftOrUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideUndirectedOrRight
T visitSimplifiedOverrideUndirectedOrRight(GQLParser.SimplifiedOverrideUndirectedOrRightContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideUndirectedOrRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideLeftOrRight
T visitSimplifiedOverrideLeftOrRight(GQLParser.SimplifiedOverrideLeftOrRightContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideLeftOrRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedOverrideAnyDirection
T visitSimplifiedOverrideAnyDirection(GQLParser.SimplifiedOverrideAnyDirectionContext ctx)
Visit a parse tree produced byGQLParser.simplifiedOverrideAnyDirection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedSecondary
T visitSimplifiedSecondary(GQLParser.SimplifiedSecondaryContext ctx)
Visit a parse tree produced byGQLParser.simplifiedSecondary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedNegation
T visitSimplifiedNegation(GQLParser.SimplifiedNegationContext ctx)
Visit a parse tree produced byGQLParser.simplifiedNegation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimplifiedPrimary
T visitSimplifiedPrimary(GQLParser.SimplifiedPrimaryContext ctx)
Visit a parse tree produced byGQLParser.simplifiedPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereClause
T visitWhereClause(GQLParser.WhereClauseContext ctx)
Visit a parse tree produced byGQLParser.whereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYieldClause
T visitYieldClause(GQLParser.YieldClauseContext ctx)
Visit a parse tree produced byGQLParser.yieldClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYieldItemList
T visitYieldItemList(GQLParser.YieldItemListContext ctx)
Visit a parse tree produced byGQLParser.yieldItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYieldItem
T visitYieldItem(GQLParser.YieldItemContext ctx)
Visit a parse tree produced byGQLParser.yieldItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYieldItemName
T visitYieldItemName(GQLParser.YieldItemNameContext ctx)
Visit a parse tree produced byGQLParser.yieldItemName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYieldItemAlias
T visitYieldItemAlias(GQLParser.YieldItemAliasContext ctx)
Visit a parse tree produced byGQLParser.yieldItemAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByClause
T visitGroupByClause(GQLParser.GroupByClauseContext ctx)
Visit a parse tree produced byGQLParser.groupByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupingElementList
T visitGroupingElementList(GQLParser.GroupingElementListContext ctx)
Visit a parse tree produced byGQLParser.groupingElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupingElement
T visitGroupingElement(GQLParser.GroupingElementContext ctx)
Visit a parse tree produced byGQLParser.groupingElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyGroupingSet
T visitEmptyGroupingSet(GQLParser.EmptyGroupingSetContext ctx)
Visit a parse tree produced byGQLParser.emptyGroupingSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByClause
T visitOrderByClause(GQLParser.OrderByClauseContext ctx)
Visit a parse tree produced byGQLParser.orderByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortSpecificationList
T visitSortSpecificationList(GQLParser.SortSpecificationListContext ctx)
Visit a parse tree produced byGQLParser.sortSpecificationList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortSpecification
T visitSortSpecification(GQLParser.SortSpecificationContext ctx)
Visit a parse tree produced byGQLParser.sortSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortKey
T visitSortKey(GQLParser.SortKeyContext ctx)
Visit a parse tree produced byGQLParser.sortKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderingSpecification
T visitOrderingSpecification(GQLParser.OrderingSpecificationContext ctx)
Visit a parse tree produced byGQLParser.orderingSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullOrdering
T visitNullOrdering(GQLParser.NullOrderingContext ctx)
Visit a parse tree produced byGQLParser.nullOrdering().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
T visitLimitClause(GQLParser.LimitClauseContext ctx)
Visit a parse tree produced byGQLParser.limitClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOffsetClause
T visitOffsetClause(GQLParser.OffsetClauseContext ctx)
Visit a parse tree produced byGQLParser.offsetClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOffsetSynonym
T visitOffsetSynonym(GQLParser.OffsetSynonymContext ctx)
Visit a parse tree produced byGQLParser.offsetSynonym().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaReference
T visitSchemaReference(GQLParser.SchemaReferenceContext ctx)
Visit a parse tree produced byGQLParser.schemaReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbsoluteCatalogSchemaReference
T visitAbsoluteCatalogSchemaReference(GQLParser.AbsoluteCatalogSchemaReferenceContext ctx)
Visit a parse tree produced byGQLParser.absoluteCatalogSchemaReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatalogSchemaParentAndName
T visitCatalogSchemaParentAndName(GQLParser.CatalogSchemaParentAndNameContext ctx)
Visit a parse tree produced byGQLParser.catalogSchemaParentAndName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelativeCatalogSchemaReference
T visitRelativeCatalogSchemaReference(GQLParser.RelativeCatalogSchemaReferenceContext ctx)
Visit a parse tree produced byGQLParser.relativeCatalogSchemaReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredefinedSchemaReference
T visitPredefinedSchemaReference(GQLParser.PredefinedSchemaReferenceContext ctx)
Visit a parse tree produced byGQLParser.predefinedSchemaReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbsoluteDirectoryPath
T visitAbsoluteDirectoryPath(GQLParser.AbsoluteDirectoryPathContext ctx)
Visit a parse tree produced byGQLParser.absoluteDirectoryPath().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelativeDirectoryPath
T visitRelativeDirectoryPath(GQLParser.RelativeDirectoryPathContext ctx)
Visit a parse tree produced byGQLParser.relativeDirectoryPath().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDirectoryPath
T visitSimpleDirectoryPath(GQLParser.SimpleDirectoryPathContext ctx)
Visit a parse tree produced byGQLParser.simpleDirectoryPath().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphReference
T visitGraphReference(GQLParser.GraphReferenceContext ctx)
Visit a parse tree produced byGQLParser.graphReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatalogGraphParentAndName
T visitCatalogGraphParentAndName(GQLParser.CatalogGraphParentAndNameContext ctx)
Visit a parse tree produced byGQLParser.catalogGraphParentAndName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHomeGraph
T visitHomeGraph(GQLParser.HomeGraphContext ctx)
Visit a parse tree produced byGQLParser.homeGraph().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphTypeReference
T visitGraphTypeReference(GQLParser.GraphTypeReferenceContext ctx)
Visit a parse tree produced byGQLParser.graphTypeReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatalogGraphTypeParentAndName
T visitCatalogGraphTypeParentAndName(GQLParser.CatalogGraphTypeParentAndNameContext ctx)
Visit a parse tree produced byGQLParser.catalogGraphTypeParentAndName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableReference
T visitBindingTableReference(GQLParser.BindingTableReferenceContext ctx)
Visit a parse tree produced byGQLParser.bindingTableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureReference
T visitProcedureReference(GQLParser.ProcedureReferenceContext ctx)
Visit a parse tree produced byGQLParser.procedureReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatalogProcedureParentAndName
T visitCatalogProcedureParentAndName(GQLParser.CatalogProcedureParentAndNameContext ctx)
Visit a parse tree produced byGQLParser.catalogProcedureParentAndName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatalogObjectParentReference
T visitCatalogObjectParentReference(GQLParser.CatalogObjectParentReferenceContext ctx)
Visit a parse tree produced byGQLParser.catalogObjectParentReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceParameterSpecification
T visitReferenceParameterSpecification(GQLParser.ReferenceParameterSpecificationContext ctx)
Visit a parse tree produced byGQLParser.referenceParameterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedGraphTypeSpecification
T visitNestedGraphTypeSpecification(GQLParser.NestedGraphTypeSpecificationContext ctx)
Visit a parse tree produced byGQLParser.nestedGraphTypeSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphTypeSpecificationBody
T visitGraphTypeSpecificationBody(GQLParser.GraphTypeSpecificationBodyContext ctx)
Visit a parse tree produced byGQLParser.graphTypeSpecificationBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementTypeList
T visitElementTypeList(GQLParser.ElementTypeListContext ctx)
Visit a parse tree produced byGQLParser.elementTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementTypeSpecification
T visitElementTypeSpecification(GQLParser.ElementTypeSpecificationContext ctx)
Visit a parse tree produced byGQLParser.elementTypeSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypeSpecification
T visitNodeTypeSpecification(GQLParser.NodeTypeSpecificationContext ctx)
Visit a parse tree produced byGQLParser.nodeTypeSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypePattern
T visitNodeTypePattern(GQLParser.NodeTypePatternContext ctx)
Visit a parse tree produced byGQLParser.nodeTypePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypePhrase
T visitNodeTypePhrase(GQLParser.NodeTypePhraseContext ctx)
Visit a parse tree produced byGQLParser.nodeTypePhrase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypePhraseFiller
T visitNodeTypePhraseFiller(GQLParser.NodeTypePhraseFillerContext ctx)
Visit a parse tree produced byGQLParser.nodeTypePhraseFiller().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypeFiller
T visitNodeTypeFiller(GQLParser.NodeTypeFillerContext ctx)
Visit a parse tree produced byGQLParser.nodeTypeFiller().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalNodeTypeAlias
T visitLocalNodeTypeAlias(GQLParser.LocalNodeTypeAliasContext ctx)
Visit a parse tree produced byGQLParser.localNodeTypeAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypeImpliedContent
T visitNodeTypeImpliedContent(GQLParser.NodeTypeImpliedContentContext ctx)
Visit a parse tree produced byGQLParser.nodeTypeImpliedContent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypeKeyLabelSet
T visitNodeTypeKeyLabelSet(GQLParser.NodeTypeKeyLabelSetContext ctx)
Visit a parse tree produced byGQLParser.nodeTypeKeyLabelSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypeLabelSet
T visitNodeTypeLabelSet(GQLParser.NodeTypeLabelSetContext ctx)
Visit a parse tree produced byGQLParser.nodeTypeLabelSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypePropertyTypes
T visitNodeTypePropertyTypes(GQLParser.NodeTypePropertyTypesContext ctx)
Visit a parse tree produced byGQLParser.nodeTypePropertyTypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypeSpecification
T visitEdgeTypeSpecification(GQLParser.EdgeTypeSpecificationContext ctx)
Visit a parse tree produced byGQLParser.edgeTypeSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePattern
T visitEdgeTypePattern(GQLParser.EdgeTypePatternContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePhrase
T visitEdgeTypePhrase(GQLParser.EdgeTypePhraseContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePhrase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePhraseFiller
T visitEdgeTypePhraseFiller(GQLParser.EdgeTypePhraseFillerContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePhraseFiller().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypeFiller
T visitEdgeTypeFiller(GQLParser.EdgeTypeFillerContext ctx)
Visit a parse tree produced byGQLParser.edgeTypeFiller().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypeImpliedContent
T visitEdgeTypeImpliedContent(GQLParser.EdgeTypeImpliedContentContext ctx)
Visit a parse tree produced byGQLParser.edgeTypeImpliedContent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypeKeyLabelSet
T visitEdgeTypeKeyLabelSet(GQLParser.EdgeTypeKeyLabelSetContext ctx)
Visit a parse tree produced byGQLParser.edgeTypeKeyLabelSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypeLabelSet
T visitEdgeTypeLabelSet(GQLParser.EdgeTypeLabelSetContext ctx)
Visit a parse tree produced byGQLParser.edgeTypeLabelSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePropertyTypes
T visitEdgeTypePropertyTypes(GQLParser.EdgeTypePropertyTypesContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePropertyTypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePatternDirected
T visitEdgeTypePatternDirected(GQLParser.EdgeTypePatternDirectedContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePatternDirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePatternPointingRight
T visitEdgeTypePatternPointingRight(GQLParser.EdgeTypePatternPointingRightContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePatternPointingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePatternPointingLeft
T visitEdgeTypePatternPointingLeft(GQLParser.EdgeTypePatternPointingLeftContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePatternPointingLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypePatternUndirected
T visitEdgeTypePatternUndirected(GQLParser.EdgeTypePatternUndirectedContext ctx)
Visit a parse tree produced byGQLParser.edgeTypePatternUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArcTypePointingRight
T visitArcTypePointingRight(GQLParser.ArcTypePointingRightContext ctx)
Visit a parse tree produced byGQLParser.arcTypePointingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArcTypePointingLeft
T visitArcTypePointingLeft(GQLParser.ArcTypePointingLeftContext ctx)
Visit a parse tree produced byGQLParser.arcTypePointingLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArcTypeUndirected
T visitArcTypeUndirected(GQLParser.ArcTypeUndirectedContext ctx)
Visit a parse tree produced byGQLParser.arcTypeUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSourceNodeTypeReference
T visitSourceNodeTypeReference(GQLParser.SourceNodeTypeReferenceContext ctx)
Visit a parse tree produced byGQLParser.sourceNodeTypeReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDestinationNodeTypeReference
T visitDestinationNodeTypeReference(GQLParser.DestinationNodeTypeReferenceContext ctx)
Visit a parse tree produced byGQLParser.destinationNodeTypeReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeKind
T visitEdgeKind(GQLParser.EdgeKindContext ctx)
Visit a parse tree produced byGQLParser.edgeKind().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPairPhrase
T visitEndpointPairPhrase(GQLParser.EndpointPairPhraseContext ctx)
Visit a parse tree produced byGQLParser.endpointPairPhrase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPair
T visitEndpointPair(GQLParser.EndpointPairContext ctx)
Visit a parse tree produced byGQLParser.endpointPair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPairDirected
T visitEndpointPairDirected(GQLParser.EndpointPairDirectedContext ctx)
Visit a parse tree produced byGQLParser.endpointPairDirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPairPointingRight
T visitEndpointPairPointingRight(GQLParser.EndpointPairPointingRightContext ctx)
Visit a parse tree produced byGQLParser.endpointPairPointingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPairPointingLeft
T visitEndpointPairPointingLeft(GQLParser.EndpointPairPointingLeftContext ctx)
Visit a parse tree produced byGQLParser.endpointPairPointingLeft().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPairUndirected
T visitEndpointPairUndirected(GQLParser.EndpointPairUndirectedContext ctx)
Visit a parse tree produced byGQLParser.endpointPairUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConnectorPointingRight
T visitConnectorPointingRight(GQLParser.ConnectorPointingRightContext ctx)
Visit a parse tree produced byGQLParser.connectorPointingRight().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConnectorUndirected
T visitConnectorUndirected(GQLParser.ConnectorUndirectedContext ctx)
Visit a parse tree produced byGQLParser.connectorUndirected().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSourceNodeTypeAlias
T visitSourceNodeTypeAlias(GQLParser.SourceNodeTypeAliasContext ctx)
Visit a parse tree produced byGQLParser.sourceNodeTypeAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDestinationNodeTypeAlias
T visitDestinationNodeTypeAlias(GQLParser.DestinationNodeTypeAliasContext ctx)
Visit a parse tree produced byGQLParser.destinationNodeTypeAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelSetPhrase
T visitLabelSetPhrase(GQLParser.LabelSetPhraseContext ctx)
Visit a parse tree produced byGQLParser.labelSetPhrase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelSetSpecification
T visitLabelSetSpecification(GQLParser.LabelSetSpecificationContext ctx)
Visit a parse tree produced byGQLParser.labelSetSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyTypesSpecification
T visitPropertyTypesSpecification(GQLParser.PropertyTypesSpecificationContext ctx)
Visit a parse tree produced byGQLParser.propertyTypesSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyTypeList
T visitPropertyTypeList(GQLParser.PropertyTypeListContext ctx)
Visit a parse tree produced byGQLParser.propertyTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyType
T visitPropertyType(GQLParser.PropertyTypeContext ctx)
Visit a parse tree produced byGQLParser.propertyType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyValueType
T visitPropertyValueType(GQLParser.PropertyValueTypeContext ctx)
Visit a parse tree produced byGQLParser.propertyValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableType
T visitBindingTableType(GQLParser.BindingTableTypeContext ctx)
Visit a parse tree produced byGQLParser.bindingTableType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDynamicPropertyValueTypeLabel
T visitDynamicPropertyValueTypeLabel(GQLParser.DynamicPropertyValueTypeLabelContext ctx)
Visit a parse tree produced by thedynamicPropertyValueTypeLabellabeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClosedDynamicUnionTypeAtl1
T visitClosedDynamicUnionTypeAtl1(GQLParser.ClosedDynamicUnionTypeAtl1Context ctx)
Visit a parse tree produced by theclosedDynamicUnionTypeAtl1labeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClosedDynamicUnionTypeAtl2
T visitClosedDynamicUnionTypeAtl2(GQLParser.ClosedDynamicUnionTypeAtl2Context ctx)
Visit a parse tree produced by theclosedDynamicUnionTypeAtl2labeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathValueTypeLabel
T visitPathValueTypeLabel(GQLParser.PathValueTypeLabelContext ctx)
Visit a parse tree produced by thepathValueTypeLabellabeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueTypeAlt3
T visitListValueTypeAlt3(GQLParser.ListValueTypeAlt3Context ctx)
Visit a parse tree produced by thelistValueTypeAlt3labeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueTypeAlt2
T visitListValueTypeAlt2(GQLParser.ListValueTypeAlt2Context ctx)
Visit a parse tree produced by thelistValueTypeAlt2labeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueTypeAlt1
T visitListValueTypeAlt1(GQLParser.ListValueTypeAlt1Context ctx)
Visit a parse tree produced by thelistValueTypeAlt1labeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredefinedTypeLabel
T visitPredefinedTypeLabel(GQLParser.PredefinedTypeLabelContext ctx)
Visit a parse tree produced by thepredefinedTypeLabellabeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRecordTypeLabel
T visitRecordTypeLabel(GQLParser.RecordTypeLabelContext ctx)
Visit a parse tree produced by therecordTypeLabellabeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenDynamicUnionTypeLabel
T visitOpenDynamicUnionTypeLabel(GQLParser.OpenDynamicUnionTypeLabelContext ctx)
Visit a parse tree produced by theopenDynamicUnionTypeLabellabeled alternative inGQLParser.valueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTyped
T visitTyped(GQLParser.TypedContext ctx)
Visit a parse tree produced byGQLParser.typed().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredefinedType
T visitPredefinedType(GQLParser.PredefinedTypeContext ctx)
Visit a parse tree produced byGQLParser.predefinedType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanType
T visitBooleanType(GQLParser.BooleanTypeContext ctx)
Visit a parse tree produced byGQLParser.booleanType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterStringType
T visitCharacterStringType(GQLParser.CharacterStringTypeContext ctx)
Visit a parse tree produced byGQLParser.characterStringType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitByteStringType
T visitByteStringType(GQLParser.ByteStringTypeContext ctx)
Visit a parse tree produced byGQLParser.byteStringType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMinLength
T visitMinLength(GQLParser.MinLengthContext ctx)
Visit a parse tree produced byGQLParser.minLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMaxLength
T visitMaxLength(GQLParser.MaxLengthContext ctx)
Visit a parse tree produced byGQLParser.maxLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFixedLength
T visitFixedLength(GQLParser.FixedLengthContext ctx)
Visit a parse tree produced byGQLParser.fixedLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericType
T visitNumericType(GQLParser.NumericTypeContext ctx)
Visit a parse tree produced byGQLParser.numericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExactNumericType
T visitExactNumericType(GQLParser.ExactNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.exactNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryExactNumericType
T visitBinaryExactNumericType(GQLParser.BinaryExactNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.binaryExactNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignedBinaryExactNumericType
T visitSignedBinaryExactNumericType(GQLParser.SignedBinaryExactNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.signedBinaryExactNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnsignedBinaryExactNumericType
T visitUnsignedBinaryExactNumericType(GQLParser.UnsignedBinaryExactNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.unsignedBinaryExactNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVerboseBinaryExactNumericType
T visitVerboseBinaryExactNumericType(GQLParser.VerboseBinaryExactNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.verboseBinaryExactNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalExactNumericType
T visitDecimalExactNumericType(GQLParser.DecimalExactNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.decimalExactNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrecision
T visitPrecision(GQLParser.PrecisionContext ctx)
Visit a parse tree produced byGQLParser.precision().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScale
T visitScale(GQLParser.ScaleContext ctx)
Visit a parse tree produced byGQLParser.scale().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitApproximateNumericType
T visitApproximateNumericType(GQLParser.ApproximateNumericTypeContext ctx)
Visit a parse tree produced byGQLParser.approximateNumericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTemporalType
T visitTemporalType(GQLParser.TemporalTypeContext ctx)
Visit a parse tree produced byGQLParser.temporalType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTemporalInstantType
T visitTemporalInstantType(GQLParser.TemporalInstantTypeContext ctx)
Visit a parse tree produced byGQLParser.temporalInstantType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeType
T visitDatetimeType(GQLParser.DatetimeTypeContext ctx)
Visit a parse tree produced byGQLParser.datetimeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocaldatetimeType
T visitLocaldatetimeType(GQLParser.LocaldatetimeTypeContext ctx)
Visit a parse tree produced byGQLParser.localdatetimeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateType
T visitDateType(GQLParser.DateTypeContext ctx)
Visit a parse tree produced byGQLParser.dateType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeType
T visitTimeType(GQLParser.TimeTypeContext ctx)
Visit a parse tree produced byGQLParser.timeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocaltimeType
T visitLocaltimeType(GQLParser.LocaltimeTypeContext ctx)
Visit a parse tree produced byGQLParser.localtimeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTemporalDurationType
T visitTemporalDurationType(GQLParser.TemporalDurationTypeContext ctx)
Visit a parse tree produced byGQLParser.temporalDurationType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTemporalDurationQualifier
T visitTemporalDurationQualifier(GQLParser.TemporalDurationQualifierContext ctx)
Visit a parse tree produced byGQLParser.temporalDurationQualifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceValueType
T visitReferenceValueType(GQLParser.ReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.referenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImmaterialValueType
T visitImmaterialValueType(GQLParser.ImmaterialValueTypeContext ctx)
Visit a parse tree produced byGQLParser.immaterialValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullType
T visitNullType(GQLParser.NullTypeContext ctx)
Visit a parse tree produced byGQLParser.nullType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyType
T visitEmptyType(GQLParser.EmptyTypeContext ctx)
Visit a parse tree produced byGQLParser.emptyType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphReferenceValueType
T visitGraphReferenceValueType(GQLParser.GraphReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.graphReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClosedGraphReferenceValueType
T visitClosedGraphReferenceValueType(GQLParser.ClosedGraphReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.closedGraphReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenGraphReferenceValueType
T visitOpenGraphReferenceValueType(GQLParser.OpenGraphReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.openGraphReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableReferenceValueType
T visitBindingTableReferenceValueType(GQLParser.BindingTableReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.bindingTableReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeReferenceValueType
T visitNodeReferenceValueType(GQLParser.NodeReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.nodeReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClosedNodeReferenceValueType
T visitClosedNodeReferenceValueType(GQLParser.ClosedNodeReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.closedNodeReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenNodeReferenceValueType
T visitOpenNodeReferenceValueType(GQLParser.OpenNodeReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.openNodeReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeReferenceValueType
T visitEdgeReferenceValueType(GQLParser.EdgeReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.edgeReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClosedEdgeReferenceValueType
T visitClosedEdgeReferenceValueType(GQLParser.ClosedEdgeReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.closedEdgeReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenEdgeReferenceValueType
T visitOpenEdgeReferenceValueType(GQLParser.OpenEdgeReferenceValueTypeContext ctx)
Visit a parse tree produced byGQLParser.openEdgeReferenceValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathValueType
T visitPathValueType(GQLParser.PathValueTypeContext ctx)
Visit a parse tree produced byGQLParser.pathValueType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueTypeName
T visitListValueTypeName(GQLParser.ListValueTypeNameContext ctx)
Visit a parse tree produced byGQLParser.listValueTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueTypeNameSynonym
T visitListValueTypeNameSynonym(GQLParser.ListValueTypeNameSynonymContext ctx)
Visit a parse tree produced byGQLParser.listValueTypeNameSynonym().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRecordType
T visitRecordType(GQLParser.RecordTypeContext ctx)
Visit a parse tree produced byGQLParser.recordType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldTypesSpecification
T visitFieldTypesSpecification(GQLParser.FieldTypesSpecificationContext ctx)
Visit a parse tree produced byGQLParser.fieldTypesSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldTypeList
T visitFieldTypeList(GQLParser.FieldTypeListContext ctx)
Visit a parse tree produced byGQLParser.fieldTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotNull
T visitNotNull(GQLParser.NotNullContext ctx)
Visit a parse tree produced byGQLParser.notNull().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldType
T visitFieldType(GQLParser.FieldTypeContext ctx)
Visit a parse tree produced byGQLParser.fieldType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearchCondition
T visitSearchCondition(GQLParser.SearchConditionContext ctx)
Visit a parse tree produced byGQLParser.searchCondition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicate
T visitPredicate(GQLParser.PredicateContext ctx)
Visit a parse tree produced byGQLParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonPredicatePart2
T visitComparisonPredicatePart2(GQLParser.ComparisonPredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.comparisonPredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompOp
T visitCompOp(GQLParser.CompOpContext ctx)
Visit a parse tree produced byGQLParser.compOp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExistsPredicate
T visitExistsPredicate(GQLParser.ExistsPredicateContext ctx)
Visit a parse tree produced byGQLParser.existsPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullPredicate
T visitNullPredicate(GQLParser.NullPredicateContext ctx)
Visit a parse tree produced byGQLParser.nullPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullPredicatePart2
T visitNullPredicatePart2(GQLParser.NullPredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.nullPredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueTypePredicate
T visitValueTypePredicate(GQLParser.ValueTypePredicateContext ctx)
Visit a parse tree produced byGQLParser.valueTypePredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueTypePredicatePart2
T visitValueTypePredicatePart2(GQLParser.ValueTypePredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.valueTypePredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalizedPredicatePart2
T visitNormalizedPredicatePart2(GQLParser.NormalizedPredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.normalizedPredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDirectedPredicate
T visitDirectedPredicate(GQLParser.DirectedPredicateContext ctx)
Visit a parse tree produced byGQLParser.directedPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDirectedPredicatePart2
T visitDirectedPredicatePart2(GQLParser.DirectedPredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.directedPredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabeledPredicate
T visitLabeledPredicate(GQLParser.LabeledPredicateContext ctx)
Visit a parse tree produced byGQLParser.labeledPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabeledPredicatePart2
T visitLabeledPredicatePart2(GQLParser.LabeledPredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.labeledPredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsLabeledOrColon
T visitIsLabeledOrColon(GQLParser.IsLabeledOrColonContext ctx)
Visit a parse tree produced byGQLParser.isLabeledOrColon().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSourceDestinationPredicate
T visitSourceDestinationPredicate(GQLParser.SourceDestinationPredicateContext ctx)
Visit a parse tree produced byGQLParser.sourceDestinationPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeReference
T visitNodeReference(GQLParser.NodeReferenceContext ctx)
Visit a parse tree produced byGQLParser.nodeReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSourcePredicatePart2
T visitSourcePredicatePart2(GQLParser.SourcePredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.sourcePredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDestinationPredicatePart2
T visitDestinationPredicatePart2(GQLParser.DestinationPredicatePart2Context ctx)
Visit a parse tree produced byGQLParser.destinationPredicatePart2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeReference
T visitEdgeReference(GQLParser.EdgeReferenceContext ctx)
Visit a parse tree produced byGQLParser.edgeReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAll_differentPredicate
T visitAll_differentPredicate(GQLParser.All_differentPredicateContext ctx)
Visit a parse tree produced byGQLParser.all_differentPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSamePredicate
T visitSamePredicate(GQLParser.SamePredicateContext ctx)
Visit a parse tree produced byGQLParser.samePredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProperty_existsPredicate
T visitProperty_existsPredicate(GQLParser.Property_existsPredicateContext ctx)
Visit a parse tree produced byGQLParser.property_existsPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConjunctiveExprAlt
T visitConjunctiveExprAlt(GQLParser.ConjunctiveExprAltContext ctx)
Visit a parse tree produced by theconjunctiveExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyGraphExprAlt
T visitPropertyGraphExprAlt(GQLParser.PropertyGraphExprAltContext ctx)
Visit a parse tree produced by thepropertyGraphExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultDivExprAlt
T visitMultDivExprAlt(GQLParser.MultDivExprAltContext ctx)
Visit a parse tree produced by themultDivExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableExprAlt
T visitBindingTableExprAlt(GQLParser.BindingTableExprAltContext ctx)
Visit a parse tree produced by thebindingTableExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignedExprAlt
T visitSignedExprAlt(GQLParser.SignedExprAltContext ctx)
Visit a parse tree produced by thesignedExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsNotExprAlt
T visitIsNotExprAlt(GQLParser.IsNotExprAltContext ctx)
Visit a parse tree produced by theisNotExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalizedPredicateExprAlt
T visitNormalizedPredicateExprAlt(GQLParser.NormalizedPredicateExprAltContext ctx)
Visit a parse tree produced by thenormalizedPredicateExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExprAlt
T visitNotExprAlt(GQLParser.NotExprAltContext ctx)
Visit a parse tree produced by thenotExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueFunctionExprAlt
T visitValueFunctionExprAlt(GQLParser.ValueFunctionExprAltContext ctx)
Visit a parse tree produced by thevalueFunctionExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConcatenationExprAlt
T visitConcatenationExprAlt(GQLParser.ConcatenationExprAltContext ctx)
Visit a parse tree produced by theconcatenationExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDisjunctiveExprAlt
T visitDisjunctiveExprAlt(GQLParser.DisjunctiveExprAltContext ctx)
Visit a parse tree produced by thedisjunctiveExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonExprAlt
T visitComparisonExprAlt(GQLParser.ComparisonExprAltContext ctx)
Visit a parse tree produced by thecomparisonExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryExprAlt
T visitPrimaryExprAlt(GQLParser.PrimaryExprAltContext ctx)
Visit a parse tree produced by theprimaryExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddSubtractExprAlt
T visitAddSubtractExprAlt(GQLParser.AddSubtractExprAltContext ctx)
Visit a parse tree produced by theaddSubtractExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicateExprAlt
T visitPredicateExprAlt(GQLParser.PredicateExprAltContext ctx)
Visit a parse tree produced by thepredicateExprAltlabeled alternative inGQLParser.valueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueFunction
T visitValueFunction(GQLParser.ValueFunctionContext ctx)
Visit a parse tree produced byGQLParser.valueFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanValueExpression
T visitBooleanValueExpression(GQLParser.BooleanValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.booleanValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterOrByteStringFunction
T visitCharacterOrByteStringFunction(GQLParser.CharacterOrByteStringFunctionContext ctx)
Visit a parse tree produced byGQLParser.characterOrByteStringFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubCharacterOrByteString
T visitSubCharacterOrByteString(GQLParser.SubCharacterOrByteStringContext ctx)
Visit a parse tree produced byGQLParser.subCharacterOrByteString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimSingleCharacterOrByteString
T visitTrimSingleCharacterOrByteString(GQLParser.TrimSingleCharacterOrByteStringContext ctx)
Visit a parse tree produced byGQLParser.trimSingleCharacterOrByteString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFoldCharacterString
T visitFoldCharacterString(GQLParser.FoldCharacterStringContext ctx)
Visit a parse tree produced byGQLParser.foldCharacterString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimMultiCharacterCharacterString
T visitTrimMultiCharacterCharacterString(GQLParser.TrimMultiCharacterCharacterStringContext ctx)
Visit a parse tree produced byGQLParser.trimMultiCharacterCharacterString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalizeCharacterString
T visitNormalizeCharacterString(GQLParser.NormalizeCharacterStringContext ctx)
Visit a parse tree produced byGQLParser.normalizeCharacterString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeReferenceValueExpression
T visitNodeReferenceValueExpression(GQLParser.NodeReferenceValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.nodeReferenceValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeReferenceValueExpression
T visitEdgeReferenceValueExpression(GQLParser.EdgeReferenceValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.edgeReferenceValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregatingValueExpression
T visitAggregatingValueExpression(GQLParser.AggregatingValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.aggregatingValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueExpressionPrimary
T visitValueExpressionPrimary(GQLParser.ValueExpressionPrimaryContext ctx)
Visit a parse tree produced byGQLParser.valueExpressionPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesizedValueExpression
T visitParenthesizedValueExpression(GQLParser.ParenthesizedValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.parenthesizedValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonParenthesizedValueExpressionPrimary
T visitNonParenthesizedValueExpressionPrimary(GQLParser.NonParenthesizedValueExpressionPrimaryContext ctx)
Visit a parse tree produced byGQLParser.nonParenthesizedValueExpressionPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonParenthesizedValueExpressionPrimarySpecialCase
T visitNonParenthesizedValueExpressionPrimarySpecialCase(GQLParser.NonParenthesizedValueExpressionPrimarySpecialCaseContext ctx)
Visit a parse tree produced byGQLParser.nonParenthesizedValueExpressionPrimarySpecialCase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnsignedValueSpecification
T visitUnsignedValueSpecification(GQLParser.UnsignedValueSpecificationContext ctx)
Visit a parse tree produced byGQLParser.unsignedValueSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonNegativeIntegerSpecification
T visitNonNegativeIntegerSpecification(GQLParser.NonNegativeIntegerSpecificationContext ctx)
Visit a parse tree produced byGQLParser.nonNegativeIntegerSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralValueSpecification
T visitGeneralValueSpecification(GQLParser.GeneralValueSpecificationContext ctx)
Visit a parse tree produced byGQLParser.generalValueSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDynamicParameterSpecification
T visitDynamicParameterSpecification(GQLParser.DynamicParameterSpecificationContext ctx)
Visit a parse tree produced byGQLParser.dynamicParameterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLetValueExpression
T visitLetValueExpression(GQLParser.LetValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.letValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueQueryExpression
T visitValueQueryExpression(GQLParser.ValueQueryExpressionContext ctx)
Visit a parse tree produced byGQLParser.valueQueryExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpression
T visitCaseExpression(GQLParser.CaseExpressionContext ctx)
Visit a parse tree produced byGQLParser.caseExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseAbbreviation
T visitCaseAbbreviation(GQLParser.CaseAbbreviationContext ctx)
Visit a parse tree produced byGQLParser.caseAbbreviation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseSpecification
T visitCaseSpecification(GQLParser.CaseSpecificationContext ctx)
Visit a parse tree produced byGQLParser.caseSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleCase
T visitSimpleCase(GQLParser.SimpleCaseContext ctx)
Visit a parse tree produced byGQLParser.simpleCase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearchedCase
T visitSearchedCase(GQLParser.SearchedCaseContext ctx)
Visit a parse tree produced byGQLParser.searchedCase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleWhenClause
T visitSimpleWhenClause(GQLParser.SimpleWhenClauseContext ctx)
Visit a parse tree produced byGQLParser.simpleWhenClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearchedWhenClause
T visitSearchedWhenClause(GQLParser.SearchedWhenClauseContext ctx)
Visit a parse tree produced byGQLParser.searchedWhenClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElseClause
T visitElseClause(GQLParser.ElseClauseContext ctx)
Visit a parse tree produced byGQLParser.elseClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseOperand
T visitCaseOperand(GQLParser.CaseOperandContext ctx)
Visit a parse tree produced byGQLParser.caseOperand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhenOperandList
T visitWhenOperandList(GQLParser.WhenOperandListContext ctx)
Visit a parse tree produced byGQLParser.whenOperandList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhenOperand
T visitWhenOperand(GQLParser.WhenOperandContext ctx)
Visit a parse tree produced byGQLParser.whenOperand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResult
T visitResult(GQLParser.ResultContext ctx)
Visit a parse tree produced byGQLParser.result().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResultExpression
T visitResultExpression(GQLParser.ResultExpressionContext ctx)
Visit a parse tree produced byGQLParser.resultExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastSpecification
T visitCastSpecification(GQLParser.CastSpecificationContext ctx)
Visit a parse tree produced byGQLParser.castSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastOperand
T visitCastOperand(GQLParser.CastOperandContext ctx)
Visit a parse tree produced byGQLParser.castOperand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastTarget
T visitCastTarget(GQLParser.CastTargetContext ctx)
Visit a parse tree produced byGQLParser.castTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateFunction
T visitAggregateFunction(GQLParser.AggregateFunctionContext ctx)
Visit a parse tree produced byGQLParser.aggregateFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralSetFunction
T visitGeneralSetFunction(GQLParser.GeneralSetFunctionContext ctx)
Visit a parse tree produced byGQLParser.generalSetFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinarySetFunction
T visitBinarySetFunction(GQLParser.BinarySetFunctionContext ctx)
Visit a parse tree produced byGQLParser.binarySetFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralSetFunctionType
T visitGeneralSetFunctionType(GQLParser.GeneralSetFunctionTypeContext ctx)
Visit a parse tree produced byGQLParser.generalSetFunctionType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetQuantifier
T visitSetQuantifier(GQLParser.SetQuantifierContext ctx)
Visit a parse tree produced byGQLParser.setQuantifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinarySetFunctionType
T visitBinarySetFunctionType(GQLParser.BinarySetFunctionTypeContext ctx)
Visit a parse tree produced byGQLParser.binarySetFunctionType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDependentValueExpression
T visitDependentValueExpression(GQLParser.DependentValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.dependentValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndependentValueExpression
T visitIndependentValueExpression(GQLParser.IndependentValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.independentValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElement_idFunction
T visitElement_idFunction(GQLParser.Element_idFunctionContext ctx)
Visit a parse tree produced byGQLParser.element_idFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingVariableReference
T visitBindingVariableReference(GQLParser.BindingVariableReferenceContext ctx)
Visit a parse tree produced byGQLParser.bindingVariableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathValueExpression
T visitPathValueExpression(GQLParser.PathValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.pathValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathValueConstructor
T visitPathValueConstructor(GQLParser.PathValueConstructorContext ctx)
Visit a parse tree produced byGQLParser.pathValueConstructor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathValueConstructorByEnumeration
T visitPathValueConstructorByEnumeration(GQLParser.PathValueConstructorByEnumerationContext ctx)
Visit a parse tree produced byGQLParser.pathValueConstructorByEnumeration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathElementList
T visitPathElementList(GQLParser.PathElementListContext ctx)
Visit a parse tree produced byGQLParser.pathElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathElementListStart
T visitPathElementListStart(GQLParser.PathElementListStartContext ctx)
Visit a parse tree produced byGQLParser.pathElementListStart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathElementListStep
T visitPathElementListStep(GQLParser.PathElementListStepContext ctx)
Visit a parse tree produced byGQLParser.pathElementListStep().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueExpression
T visitListValueExpression(GQLParser.ListValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.listValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueFunction
T visitListValueFunction(GQLParser.ListValueFunctionContext ctx)
Visit a parse tree produced byGQLParser.listValueFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimListFunction
T visitTrimListFunction(GQLParser.TrimListFunctionContext ctx)
Visit a parse tree produced byGQLParser.trimListFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementsFunction
T visitElementsFunction(GQLParser.ElementsFunctionContext ctx)
Visit a parse tree produced byGQLParser.elementsFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueConstructor
T visitListValueConstructor(GQLParser.ListValueConstructorContext ctx)
Visit a parse tree produced byGQLParser.listValueConstructor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListValueConstructorByEnumeration
T visitListValueConstructorByEnumeration(GQLParser.ListValueConstructorByEnumerationContext ctx)
Visit a parse tree produced byGQLParser.listValueConstructorByEnumeration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListElementList
T visitListElementList(GQLParser.ListElementListContext ctx)
Visit a parse tree produced byGQLParser.listElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListElement
T visitListElement(GQLParser.ListElementContext ctx)
Visit a parse tree produced byGQLParser.listElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRecordConstructor
T visitRecordConstructor(GQLParser.RecordConstructorContext ctx)
Visit a parse tree produced byGQLParser.recordConstructor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldsSpecification
T visitFieldsSpecification(GQLParser.FieldsSpecificationContext ctx)
Visit a parse tree produced byGQLParser.fieldsSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldList
T visitFieldList(GQLParser.FieldListContext ctx)
Visit a parse tree produced byGQLParser.fieldList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField
T visitField(GQLParser.FieldContext ctx)
Visit a parse tree produced byGQLParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTruthValue
T visitTruthValue(GQLParser.TruthValueContext ctx)
Visit a parse tree produced byGQLParser.truthValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericValueExpression
T visitNumericValueExpression(GQLParser.NumericValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.numericValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericValueFunction
T visitNumericValueFunction(GQLParser.NumericValueFunctionContext ctx)
Visit a parse tree produced byGQLParser.numericValueFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthExpression
T visitLengthExpression(GQLParser.LengthExpressionContext ctx)
Visit a parse tree produced byGQLParser.lengthExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCardinalityExpression
T visitCardinalityExpression(GQLParser.CardinalityExpressionContext ctx)
Visit a parse tree produced byGQLParser.cardinalityExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCardinalityExpressionArgument
T visitCardinalityExpressionArgument(GQLParser.CardinalityExpressionArgumentContext ctx)
Visit a parse tree produced byGQLParser.cardinalityExpressionArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharLengthExpression
T visitCharLengthExpression(GQLParser.CharLengthExpressionContext ctx)
Visit a parse tree produced byGQLParser.charLengthExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitByteLengthExpression
T visitByteLengthExpression(GQLParser.ByteLengthExpressionContext ctx)
Visit a parse tree produced byGQLParser.byteLengthExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathLengthExpression
T visitPathLengthExpression(GQLParser.PathLengthExpressionContext ctx)
Visit a parse tree produced byGQLParser.pathLengthExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbsoluteValueExpression
T visitAbsoluteValueExpression(GQLParser.AbsoluteValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.absoluteValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModulusExpression
T visitModulusExpression(GQLParser.ModulusExpressionContext ctx)
Visit a parse tree produced byGQLParser.modulusExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericValueExpressionDividend
T visitNumericValueExpressionDividend(GQLParser.NumericValueExpressionDividendContext ctx)
Visit a parse tree produced byGQLParser.numericValueExpressionDividend().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericValueExpressionDivisor
T visitNumericValueExpressionDivisor(GQLParser.NumericValueExpressionDivisorContext ctx)
Visit a parse tree produced byGQLParser.numericValueExpressionDivisor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrigonometricFunction
T visitTrigonometricFunction(GQLParser.TrigonometricFunctionContext ctx)
Visit a parse tree produced byGQLParser.trigonometricFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrigonometricFunctionName
T visitTrigonometricFunctionName(GQLParser.TrigonometricFunctionNameContext ctx)
Visit a parse tree produced byGQLParser.trigonometricFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralLogarithmFunction
T visitGeneralLogarithmFunction(GQLParser.GeneralLogarithmFunctionContext ctx)
Visit a parse tree produced byGQLParser.generalLogarithmFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralLogarithmBase
T visitGeneralLogarithmBase(GQLParser.GeneralLogarithmBaseContext ctx)
Visit a parse tree produced byGQLParser.generalLogarithmBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralLogarithmArgument
T visitGeneralLogarithmArgument(GQLParser.GeneralLogarithmArgumentContext ctx)
Visit a parse tree produced byGQLParser.generalLogarithmArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonLogarithm
T visitCommonLogarithm(GQLParser.CommonLogarithmContext ctx)
Visit a parse tree produced byGQLParser.commonLogarithm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNaturalLogarithm
T visitNaturalLogarithm(GQLParser.NaturalLogarithmContext ctx)
Visit a parse tree produced byGQLParser.naturalLogarithm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExponentialFunction
T visitExponentialFunction(GQLParser.ExponentialFunctionContext ctx)
Visit a parse tree produced byGQLParser.exponentialFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPowerFunction
T visitPowerFunction(GQLParser.PowerFunctionContext ctx)
Visit a parse tree produced byGQLParser.powerFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericValueExpressionBase
T visitNumericValueExpressionBase(GQLParser.NumericValueExpressionBaseContext ctx)
Visit a parse tree produced byGQLParser.numericValueExpressionBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericValueExpressionExponent
T visitNumericValueExpressionExponent(GQLParser.NumericValueExpressionExponentContext ctx)
Visit a parse tree produced byGQLParser.numericValueExpressionExponent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSquareRoot
T visitSquareRoot(GQLParser.SquareRootContext ctx)
Visit a parse tree produced byGQLParser.squareRoot().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFloorFunction
T visitFloorFunction(GQLParser.FloorFunctionContext ctx)
Visit a parse tree produced byGQLParser.floorFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCeilingFunction
T visitCeilingFunction(GQLParser.CeilingFunctionContext ctx)
Visit a parse tree produced byGQLParser.ceilingFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterStringValueExpression
T visitCharacterStringValueExpression(GQLParser.CharacterStringValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.characterStringValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitByteStringValueExpression
T visitByteStringValueExpression(GQLParser.ByteStringValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.byteStringValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimOperands
T visitTrimOperands(GQLParser.TrimOperandsContext ctx)
Visit a parse tree produced byGQLParser.trimOperands().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimCharacterOrByteStringSource
T visitTrimCharacterOrByteStringSource(GQLParser.TrimCharacterOrByteStringSourceContext ctx)
Visit a parse tree produced byGQLParser.trimCharacterOrByteStringSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimSpecification
T visitTrimSpecification(GQLParser.TrimSpecificationContext ctx)
Visit a parse tree produced byGQLParser.trimSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimCharacterOrByteString
T visitTrimCharacterOrByteString(GQLParser.TrimCharacterOrByteStringContext ctx)
Visit a parse tree produced byGQLParser.trimCharacterOrByteString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalForm
T visitNormalForm(GQLParser.NormalFormContext ctx)
Visit a parse tree produced byGQLParser.normalForm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringLength
T visitStringLength(GQLParser.StringLengthContext ctx)
Visit a parse tree produced byGQLParser.stringLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeValueExpression
T visitDatetimeValueExpression(GQLParser.DatetimeValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.datetimeValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeValueFunction
T visitDatetimeValueFunction(GQLParser.DatetimeValueFunctionContext ctx)
Visit a parse tree produced byGQLParser.datetimeValueFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateFunction
T visitDateFunction(GQLParser.DateFunctionContext ctx)
Visit a parse tree produced byGQLParser.dateFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeFunction
T visitTimeFunction(GQLParser.TimeFunctionContext ctx)
Visit a parse tree produced byGQLParser.timeFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocaltimeFunction
T visitLocaltimeFunction(GQLParser.LocaltimeFunctionContext ctx)
Visit a parse tree produced byGQLParser.localtimeFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeFunction
T visitDatetimeFunction(GQLParser.DatetimeFunctionContext ctx)
Visit a parse tree produced byGQLParser.datetimeFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocaldatetimeFunction
T visitLocaldatetimeFunction(GQLParser.LocaldatetimeFunctionContext ctx)
Visit a parse tree produced byGQLParser.localdatetimeFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateFunctionParameters
T visitDateFunctionParameters(GQLParser.DateFunctionParametersContext ctx)
Visit a parse tree produced byGQLParser.dateFunctionParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeFunctionParameters
T visitTimeFunctionParameters(GQLParser.TimeFunctionParametersContext ctx)
Visit a parse tree produced byGQLParser.timeFunctionParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeFunctionParameters
T visitDatetimeFunctionParameters(GQLParser.DatetimeFunctionParametersContext ctx)
Visit a parse tree produced byGQLParser.datetimeFunctionParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDurationValueExpression
T visitDurationValueExpression(GQLParser.DurationValueExpressionContext ctx)
Visit a parse tree produced byGQLParser.durationValueExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeSubtraction
T visitDatetimeSubtraction(GQLParser.DatetimeSubtractionContext ctx)
Visit a parse tree produced byGQLParser.datetimeSubtraction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeSubtractionParameters
T visitDatetimeSubtractionParameters(GQLParser.DatetimeSubtractionParametersContext ctx)
Visit a parse tree produced byGQLParser.datetimeSubtractionParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeValueExpression1
T visitDatetimeValueExpression1(GQLParser.DatetimeValueExpression1Context ctx)
Visit a parse tree produced byGQLParser.datetimeValueExpression1().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeValueExpression2
T visitDatetimeValueExpression2(GQLParser.DatetimeValueExpression2Context ctx)
Visit a parse tree produced byGQLParser.datetimeValueExpression2().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDurationValueFunction
T visitDurationValueFunction(GQLParser.DurationValueFunctionContext ctx)
Visit a parse tree produced byGQLParser.durationValueFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDurationFunction
T visitDurationFunction(GQLParser.DurationFunctionContext ctx)
Visit a parse tree produced byGQLParser.durationFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDurationFunctionParameters
T visitDurationFunctionParameters(GQLParser.DurationFunctionParametersContext ctx)
Visit a parse tree produced byGQLParser.durationFunctionParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectName
T visitObjectName(GQLParser.ObjectNameContext ctx)
Visit a parse tree produced byGQLParser.objectName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectNameOrBindingVariable
T visitObjectNameOrBindingVariable(GQLParser.ObjectNameOrBindingVariableContext ctx)
Visit a parse tree produced byGQLParser.objectNameOrBindingVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDirectoryName
T visitDirectoryName(GQLParser.DirectoryNameContext ctx)
Visit a parse tree produced byGQLParser.directoryName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaName
T visitSchemaName(GQLParser.SchemaNameContext ctx)
Visit a parse tree produced byGQLParser.schemaName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphName
T visitGraphName(GQLParser.GraphNameContext ctx)
Visit a parse tree produced byGQLParser.graphName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelimitedGraphName
T visitDelimitedGraphName(GQLParser.DelimitedGraphNameContext ctx)
Visit a parse tree produced byGQLParser.delimitedGraphName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGraphTypeName
T visitGraphTypeName(GQLParser.GraphTypeNameContext ctx)
Visit a parse tree produced byGQLParser.graphTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeTypeName
T visitNodeTypeName(GQLParser.NodeTypeNameContext ctx)
Visit a parse tree produced byGQLParser.nodeTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeTypeName
T visitEdgeTypeName(GQLParser.EdgeTypeNameContext ctx)
Visit a parse tree produced byGQLParser.edgeTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingTableName
T visitBindingTableName(GQLParser.BindingTableNameContext ctx)
Visit a parse tree produced byGQLParser.bindingTableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelimitedBindingTableName
T visitDelimitedBindingTableName(GQLParser.DelimitedBindingTableNameContext ctx)
Visit a parse tree produced byGQLParser.delimitedBindingTableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureName
T visitProcedureName(GQLParser.ProcedureNameContext ctx)
Visit a parse tree produced byGQLParser.procedureName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabelName
T visitLabelName(GQLParser.LabelNameContext ctx)
Visit a parse tree produced byGQLParser.labelName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPropertyName
T visitPropertyName(GQLParser.PropertyNameContext ctx)
Visit a parse tree produced byGQLParser.propertyName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldName
T visitFieldName(GQLParser.FieldNameContext ctx)
Visit a parse tree produced byGQLParser.fieldName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementVariable
T visitElementVariable(GQLParser.ElementVariableContext ctx)
Visit a parse tree produced byGQLParser.elementVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathVariable
T visitPathVariable(GQLParser.PathVariableContext ctx)
Visit a parse tree produced byGQLParser.pathVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubpathVariable
T visitSubpathVariable(GQLParser.SubpathVariableContext ctx)
Visit a parse tree produced byGQLParser.subpathVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBindingVariable
T visitBindingVariable(GQLParser.BindingVariableContext ctx)
Visit a parse tree produced byGQLParser.bindingVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnsignedLiteral
T visitUnsignedLiteral(GQLParser.UnsignedLiteralContext ctx)
Visit a parse tree produced byGQLParser.unsignedLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneralLiteral
T visitGeneralLiteral(GQLParser.GeneralLiteralContext ctx)
Visit a parse tree produced byGQLParser.generalLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTemporalLiteral
T visitTemporalLiteral(GQLParser.TemporalLiteralContext ctx)
Visit a parse tree produced byGQLParser.temporalLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateLiteral
T visitDateLiteral(GQLParser.DateLiteralContext ctx)
Visit a parse tree produced byGQLParser.dateLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeLiteral
T visitTimeLiteral(GQLParser.TimeLiteralContext ctx)
Visit a parse tree produced byGQLParser.timeLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeLiteral
T visitDatetimeLiteral(GQLParser.DatetimeLiteralContext ctx)
Visit a parse tree produced byGQLParser.datetimeLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListLiteral
T visitListLiteral(GQLParser.ListLiteralContext ctx)
Visit a parse tree produced byGQLParser.listLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRecordLiteral
T visitRecordLiteral(GQLParser.RecordLiteralContext ctx)
Visit a parse tree produced byGQLParser.recordLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(GQLParser.IdentifierContext ctx)
Visit a parse tree produced byGQLParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularIdentifier
T visitRegularIdentifier(GQLParser.RegularIdentifierContext ctx)
Visit a parse tree produced byGQLParser.regularIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeZoneString
T visitTimeZoneString(GQLParser.TimeZoneStringContext ctx)
Visit a parse tree produced byGQLParser.timeZoneString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterStringLiteral
T visitCharacterStringLiteral(GQLParser.CharacterStringLiteralContext ctx)
Visit a parse tree produced byGQLParser.characterStringLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnsignedNumericLiteral
T visitUnsignedNumericLiteral(GQLParser.UnsignedNumericLiteralContext ctx)
Visit a parse tree produced byGQLParser.unsignedNumericLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExactNumericLiteral
T visitExactNumericLiteral(GQLParser.ExactNumericLiteralContext ctx)
Visit a parse tree produced byGQLParser.exactNumericLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitApproximateNumericLiteral
T visitApproximateNumericLiteral(GQLParser.ApproximateNumericLiteralContext ctx)
Visit a parse tree produced byGQLParser.approximateNumericLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnsignedInteger
T visitUnsignedInteger(GQLParser.UnsignedIntegerContext ctx)
Visit a parse tree produced byGQLParser.unsignedInteger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnsignedDecimalInteger
T visitUnsignedDecimalInteger(GQLParser.UnsignedDecimalIntegerContext ctx)
Visit a parse tree produced byGQLParser.unsignedDecimalInteger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullLiteral
T visitNullLiteral(GQLParser.NullLiteralContext ctx)
Visit a parse tree produced byGQLParser.nullLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateString
T visitDateString(GQLParser.DateStringContext ctx)
Visit a parse tree produced byGQLParser.dateString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeString
T visitTimeString(GQLParser.TimeStringContext ctx)
Visit a parse tree produced byGQLParser.timeString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatetimeString
T visitDatetimeString(GQLParser.DatetimeStringContext ctx)
Visit a parse tree produced byGQLParser.datetimeString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDurationLiteral
T visitDurationLiteral(GQLParser.DurationLiteralContext ctx)
Visit a parse tree produced byGQLParser.durationLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDurationString
T visitDurationString(GQLParser.DurationStringContext ctx)
Visit a parse tree produced byGQLParser.durationString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeSynonym
T visitNodeSynonym(GQLParser.NodeSynonymContext ctx)
Visit a parse tree produced byGQLParser.nodeSynonym().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgesSynonym
T visitEdgesSynonym(GQLParser.EdgesSynonymContext ctx)
Visit a parse tree produced byGQLParser.edgesSynonym().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeSynonym
T visitEdgeSynonym(GQLParser.EdgeSynonymContext ctx)
Visit a parse tree produced byGQLParser.edgeSynonym().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonReservedWords
T visitNonReservedWords(GQLParser.NonReservedWordsContext ctx)
Visit a parse tree produced byGQLParser.nonReservedWords().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-