Packages

c

wvlet.airframe.sql.parser

SqlBaseBaseVisitor

class SqlBaseBaseVisitor[T] extends AbstractParseTreeVisitor[T] with SqlBaseVisitor[T]

This class provides an empty implementation of SqlBaseVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.

Annotations
@SuppressWarnings()
Linear Supertypes
SqlBaseVisitor[T], AbstractParseTreeVisitor[T], ParseTreeVisitor[T], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SqlBaseBaseVisitor
  2. SqlBaseVisitor
  3. AbstractParseTreeVisitor
  4. ParseTreeVisitor
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SqlBaseBaseVisitor()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def aggregateResult(arg0: T, arg1: T): T
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def defaultResult(): T
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def shouldVisitNextChild(arg0: RuleNode, arg1: T): Boolean
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. def visit(arg0: ParseTree): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  20. def visitAddColumn(ctx: AddColumnContext): T

    Visit a parse tree produced by the addColumn labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the addColumn labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  21. def visitAliasedRelation(ctx: AliasedRelationContext): T

    Visit a parse tree produced by SqlBaseParser#aliasedRelation.

    Visit a parse tree produced by SqlBaseParser#aliasedRelation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  22. def visitArithmeticBinary(ctx: ArithmeticBinaryContext): T

    Visit a parse tree produced by the arithmeticBinary labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the arithmeticBinary labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  23. def visitArithmeticUnary(ctx: ArithmeticUnaryContext): T

    Visit a parse tree produced by the arithmeticUnary labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the arithmeticUnary labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  24. def visitArrayConstructor(ctx: ArrayConstructorContext): T

    Visit a parse tree produced by the arrayConstructor labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the arrayConstructor labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  25. def visitAtTimeZone(ctx: AtTimeZoneContext): T

    Visit a parse tree produced by the atTimeZone labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the atTimeZone labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  26. def visitBackQuotedIdentifier(ctx: BackQuotedIdentifierContext): T

    Visit a parse tree produced by the backQuotedIdentifier labeled alternative in SqlBaseParser#identifier.

    Visit a parse tree produced by the backQuotedIdentifier labeled alternative in SqlBaseParser#identifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  27. def visitBaseType(ctx: BaseTypeContext): T

    Visit a parse tree produced by SqlBaseParser#baseType.

    Visit a parse tree produced by SqlBaseParser#baseType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  28. def visitBasicStringLiteral(ctx: BasicStringLiteralContext): T

    Visit a parse tree produced by the basicStringLiteral labeled alternative in SqlBaseParser#str.

    Visit a parse tree produced by the basicStringLiteral labeled alternative in SqlBaseParser#str.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  29. def visitBetween(ctx: BetweenContext): T

    Visit a parse tree produced by the between labeled alternative in SqlBaseParser#predicate.

    Visit a parse tree produced by the between labeled alternative in SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  30. def visitBinaryLiteral(ctx: BinaryLiteralContext): T

    Visit a parse tree produced by the binaryLiteral labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the binaryLiteral labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  31. def visitBooleanDeafault(ctx: BooleanDeafaultContext): T

    Visit a parse tree produced by the booleanDeafault labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the booleanDeafault labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  32. def visitBooleanLiteral(ctx: BooleanLiteralContext): T

    Visit a parse tree produced by the booleanLiteral labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the booleanLiteral labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  33. def visitBooleanValue(ctx: BooleanValueContext): T

    Visit a parse tree produced by SqlBaseParser#booleanValue.

    Visit a parse tree produced by SqlBaseParser#booleanValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  34. def visitBoundedFrame(ctx: BoundedFrameContext): T

    Visit a parse tree produced by the boundedFrame labeled alternative in SqlBaseParser#frameBound.

    Visit a parse tree produced by the boundedFrame labeled alternative in SqlBaseParser#frameBound.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  35. def visitCall(ctx: CallContext): T

    Visit a parse tree produced by the call labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the call labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  36. def visitCast(ctx: CastContext): T

    Visit a parse tree produced by the cast labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the cast labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  37. def visitChildren(arg0: RuleNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  38. def visitColumnAliases(ctx: ColumnAliasesContext): T

    Visit a parse tree produced by SqlBaseParser#columnAliases.

    Visit a parse tree produced by SqlBaseParser#columnAliases.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  39. def visitColumnDefinition(ctx: ColumnDefinitionContext): T

    Visit a parse tree produced by SqlBaseParser#columnDefinition.

    Visit a parse tree produced by SqlBaseParser#columnDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  40. def visitColumnReference(ctx: ColumnReferenceContext): T

    Visit a parse tree produced by the columnReference labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the columnReference labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  41. def visitCommit(ctx: CommitContext): T

    Visit a parse tree produced by the commit labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the commit labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  42. def visitComparison(ctx: ComparisonContext): T

    Visit a parse tree produced by the comparison labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the comparison labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  43. def visitComparisonOperator(ctx: ComparisonOperatorContext): T

    Visit a parse tree produced by SqlBaseParser#comparisonOperator.

    Visit a parse tree produced by SqlBaseParser#comparisonOperator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  44. def visitComparisonQuantifier(ctx: ComparisonQuantifierContext): T

    Visit a parse tree produced by SqlBaseParser#comparisonQuantifier.

    Visit a parse tree produced by SqlBaseParser#comparisonQuantifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  45. def visitConcatenation(ctx: ConcatenationContext): T

    Visit a parse tree produced by the concatenation labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the concatenation labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  46. def visitCreateSchema(ctx: CreateSchemaContext): T

    Visit a parse tree produced by the createSchema labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createSchema labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  47. def visitCreateTable(ctx: CreateTableContext): T

    Visit a parse tree produced by the createTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  48. def visitCreateTableAsSelect(ctx: CreateTableAsSelectContext): T

    Visit a parse tree produced by the createTableAsSelect labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createTableAsSelect labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  49. def visitCreateView(ctx: CreateViewContext): T

    Visit a parse tree produced by the createView labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createView labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  50. def visitCurrentRowBound(ctx: CurrentRowBoundContext): T

    Visit a parse tree produced by the currentRowBound labeled alternative in SqlBaseParser#frameBound.

    Visit a parse tree produced by the currentRowBound labeled alternative in SqlBaseParser#frameBound.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  51. def visitCurrentUser(ctx: CurrentUserContext): T

    Visit a parse tree produced by the currentUser labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the currentUser labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  52. def visitDeallocate(ctx: DeallocateContext): T

    Visit a parse tree produced by the deallocate labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the deallocate labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  53. def visitDecimalLiteral(ctx: DecimalLiteralContext): T

    Visit a parse tree produced by the decimalLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the decimalLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  54. def visitDelete(ctx: DeleteContext): T

    Visit a parse tree produced by the delete labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the delete labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  55. def visitDereference(ctx: DereferenceContext): T

    Visit a parse tree produced by the dereference labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the dereference labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  56. def visitDescribeInput(ctx: DescribeInputContext): T

    Visit a parse tree produced by the describeInput labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeInput labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  57. def visitDescribeOutput(ctx: DescribeOutputContext): T

    Visit a parse tree produced by the describeOutput labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeOutput labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  58. def visitDigitIdentifier(ctx: DigitIdentifierContext): T

    Visit a parse tree produced by the digitIdentifier labeled alternative in SqlBaseParser#identifier.

    Visit a parse tree produced by the digitIdentifier labeled alternative in SqlBaseParser#identifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  59. def visitDistinctFrom(ctx: DistinctFromContext): T

    Visit a parse tree produced by the distinctFrom labeled alternative in SqlBaseParser#predicate.

    Visit a parse tree produced by the distinctFrom labeled alternative in SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  60. def visitDoubleLiteral(ctx: DoubleLiteralContext): T

    Visit a parse tree produced by the doubleLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the doubleLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  61. def visitDropColumn(ctx: DropColumnContext): T

    Visit a parse tree produced by the dropColumn labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropColumn labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  62. def visitDropSchema(ctx: DropSchemaContext): T

    Visit a parse tree produced by the dropSchema labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropSchema labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  63. def visitDropTable(ctx: DropTableContext): T

    Visit a parse tree produced by the dropTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  64. def visitDropView(ctx: DropViewContext): T

    Visit a parse tree produced by the dropView labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropView labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  65. def visitErrorNode(arg0: ErrorNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  66. def visitExecute(ctx: ExecuteContext): T

    Visit a parse tree produced by the execute labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the execute labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  67. def visitExists(ctx: ExistsContext): T

    Visit a parse tree produced by the exists labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the exists labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  68. def visitExplain(ctx: ExplainContext): T

    Visit a parse tree produced by the explain labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the explain labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  69. def visitExplainFormat(ctx: ExplainFormatContext): T

    Visit a parse tree produced by the explainFormat labeled alternative in SqlBaseParser#explainOption.

    Visit a parse tree produced by the explainFormat labeled alternative in SqlBaseParser#explainOption.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  70. def visitExplainType(ctx: ExplainTypeContext): T

    Visit a parse tree produced by the explainType labeled alternative in SqlBaseParser#explainOption.

    Visit a parse tree produced by the explainType labeled alternative in SqlBaseParser#explainOption.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  71. def visitExpression(ctx: ExpressionContext): T

    Visit a parse tree produced by SqlBaseParser#expression.

    Visit a parse tree produced by SqlBaseParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  72. def visitExtract(ctx: ExtractContext): T

    Visit a parse tree produced by the extract labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the extract labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  73. def visitFilter(ctx: FilterContext): T

    Visit a parse tree produced by SqlBaseParser#filter.

    Visit a parse tree produced by SqlBaseParser#filter.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  74. def visitFunctionCall(ctx: FunctionCallContext): T

    Visit a parse tree produced by the functionCall labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the functionCall labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  75. def visitGrant(ctx: GrantContext): T

    Visit a parse tree produced by the grant labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the grant labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  76. def visitGroupBy(ctx: GroupByContext): T

    Visit a parse tree produced by SqlBaseParser#groupBy.

    Visit a parse tree produced by SqlBaseParser#groupBy.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  77. def visitGroupingOperation(ctx: GroupingOperationContext): T

    Visit a parse tree produced by the groupingOperation labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the groupingOperation labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  78. def visitGroupingSet(ctx: GroupingSetContext): T

    Visit a parse tree produced by SqlBaseParser#groupingSet.

    Visit a parse tree produced by SqlBaseParser#groupingSet.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  79. def visitInList(ctx: InListContext): T

    Visit a parse tree produced by the inList labeled alternative in SqlBaseParser#predicate.

    Visit a parse tree produced by the inList labeled alternative in SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  80. def visitInSubquery(ctx: InSubqueryContext): T

    Visit a parse tree produced by the inSubquery labeled alternative in SqlBaseParser#predicate.

    Visit a parse tree produced by the inSubquery labeled alternative in SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  81. def visitInlineTable(ctx: InlineTableContext): T

    Visit a parse tree produced by the inlineTable labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the inlineTable labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  82. def visitInsertInto(ctx: InsertIntoContext): T

    Visit a parse tree produced by the insertInto labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the insertInto labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  83. def visitIntegerLiteral(ctx: IntegerLiteralContext): T

    Visit a parse tree produced by the integerLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the integerLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  84. def visitInterval(ctx: IntervalContext): T

    Visit a parse tree produced by SqlBaseParser#interval.

    Visit a parse tree produced by SqlBaseParser#interval.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  85. def visitIntervalField(ctx: IntervalFieldContext): T

    Visit a parse tree produced by SqlBaseParser#intervalField.

    Visit a parse tree produced by SqlBaseParser#intervalField.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  86. def visitIntervalLiteral(ctx: IntervalLiteralContext): T

    Visit a parse tree produced by the intervalLiteral labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the intervalLiteral labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  87. def visitIsolationLevel(ctx: IsolationLevelContext): T

    Visit a parse tree produced by the isolationLevel labeled alternative in SqlBaseParser#transactionMode.

    Visit a parse tree produced by the isolationLevel labeled alternative in SqlBaseParser#transactionMode.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  88. def visitJoinCriteria(ctx: JoinCriteriaContext): T

    Visit a parse tree produced by SqlBaseParser#joinCriteria.

    Visit a parse tree produced by SqlBaseParser#joinCriteria.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  89. def visitJoinRelation(ctx: JoinRelationContext): T

    Visit a parse tree produced by the joinRelation labeled alternative in SqlBaseParser#relation.

    Visit a parse tree produced by the joinRelation labeled alternative in SqlBaseParser#relation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  90. def visitJoinType(ctx: JoinTypeContext): T

    Visit a parse tree produced by SqlBaseParser#joinType.

    Visit a parse tree produced by SqlBaseParser#joinType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  91. def visitLambda(ctx: LambdaContext): T

    Visit a parse tree produced by the lambda labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the lambda labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  92. def visitLateral(ctx: LateralContext): T

    Visit a parse tree produced by the lateral labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the lateral labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  93. def visitLateralView(ctx: LateralViewContext): T

    Visit a parse tree produced by the lateralView labeled alternative in SqlBaseParser#relation.

    Visit a parse tree produced by the lateralView labeled alternative in SqlBaseParser#relation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  94. def visitLike(ctx: LikeContext): T

    Visit a parse tree produced by the like labeled alternative in SqlBaseParser#predicate.

    Visit a parse tree produced by the like labeled alternative in SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  95. def visitLikeClause(ctx: LikeClauseContext): T

    Visit a parse tree produced by SqlBaseParser#likeClause.

    Visit a parse tree produced by SqlBaseParser#likeClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  96. def visitLogicalBinary(ctx: LogicalBinaryContext): T

    Visit a parse tree produced by the logicalBinary labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the logicalBinary labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  97. def visitLogicalNot(ctx: LogicalNotContext): T

    Visit a parse tree produced by the logicalNot labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the logicalNot labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  98. def visitNamedArgument(ctx: NamedArgumentContext): T

    Visit a parse tree produced by the namedArgument labeled alternative in SqlBaseParser#callArgument.

    Visit a parse tree produced by the namedArgument labeled alternative in SqlBaseParser#callArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  99. def visitNamedQuery(ctx: NamedQueryContext): T

    Visit a parse tree produced by SqlBaseParser#namedQuery.

    Visit a parse tree produced by SqlBaseParser#namedQuery.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  100. def visitNonReserved(ctx: NonReservedContext): T

    Visit a parse tree produced by SqlBaseParser#nonReserved.

    Visit a parse tree produced by SqlBaseParser#nonReserved.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  101. def visitNormalForm(ctx: NormalFormContext): T

    Visit a parse tree produced by SqlBaseParser#normalForm.

    Visit a parse tree produced by SqlBaseParser#normalForm.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  102. def visitNormalize(ctx: NormalizeContext): T

    Visit a parse tree produced by the normalize labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the normalize labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  103. def visitNullLiteral(ctx: NullLiteralContext): T

    Visit a parse tree produced by the nullLiteral labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the nullLiteral labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  104. def visitNullPredicate(ctx: NullPredicateContext): T

    Visit a parse tree produced by the nullPredicate labeled alternative in SqlBaseParser#predicate.

    Visit a parse tree produced by the nullPredicate labeled alternative in SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  105. def visitNumericLiteral(ctx: NumericLiteralContext): T

    Visit a parse tree produced by the numericLiteral labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the numericLiteral labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  106. def visitOver(ctx: OverContext): T

    Visit a parse tree produced by SqlBaseParser#over.

    Visit a parse tree produced by SqlBaseParser#over.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  107. def visitParameter(ctx: ParameterContext): T

    Visit a parse tree produced by the parameter labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the parameter labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  108. def visitParenthesizedExpression(ctx: ParenthesizedExpressionContext): T

    Visit a parse tree produced by the parenthesizedExpression labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the parenthesizedExpression labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  109. def visitParenthesizedRelation(ctx: ParenthesizedRelationContext): T

    Visit a parse tree produced by the parenthesizedRelation labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the parenthesizedRelation labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  110. def visitPosition(ctx: PositionContext): T

    Visit a parse tree produced by the position labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the position labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  111. def visitPositionalArgument(ctx: PositionalArgumentContext): T

    Visit a parse tree produced by the positionalArgument labeled alternative in SqlBaseParser#callArgument.

    Visit a parse tree produced by the positionalArgument labeled alternative in SqlBaseParser#callArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  112. def visitPredicated(ctx: PredicatedContext): T

    Visit a parse tree produced by SqlBaseParser#predicated.

    Visit a parse tree produced by SqlBaseParser#predicated.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  113. def visitPrepare(ctx: PrepareContext): T

    Visit a parse tree produced by the prepare labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the prepare labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  114. def visitPrivilege(ctx: PrivilegeContext): T

    Visit a parse tree produced by SqlBaseParser#privilege.

    Visit a parse tree produced by SqlBaseParser#privilege.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  115. def visitProperties(ctx: PropertiesContext): T

    Visit a parse tree produced by SqlBaseParser#properties.

    Visit a parse tree produced by SqlBaseParser#properties.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  116. def visitProperty(ctx: PropertyContext): T

    Visit a parse tree produced by SqlBaseParser#property.

    Visit a parse tree produced by SqlBaseParser#property.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  117. def visitQualifiedName(ctx: QualifiedNameContext): T

    Visit a parse tree produced by SqlBaseParser#qualifiedName.

    Visit a parse tree produced by SqlBaseParser#qualifiedName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  118. def visitQuery(ctx: QueryContext): T

    Visit a parse tree produced by SqlBaseParser#query.

    Visit a parse tree produced by SqlBaseParser#query.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  119. def visitQueryNoWith(ctx: QueryNoWithContext): T

    Visit a parse tree produced by SqlBaseParser#queryNoWith.

    Visit a parse tree produced by SqlBaseParser#queryNoWith.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  120. def visitQueryPrimaryDefault(ctx: QueryPrimaryDefaultContext): T

    Visit a parse tree produced by the queryPrimaryDefault labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the queryPrimaryDefault labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  121. def visitQuerySpecification(ctx: QuerySpecificationContext): T

    Visit a parse tree produced by SqlBaseParser#querySpecification.

    Visit a parse tree produced by SqlBaseParser#querySpecification.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  122. def visitQueryTermDefault(ctx: QueryTermDefaultContext): T

    Visit a parse tree produced by the queryTermDefault labeled alternative in SqlBaseParser#queryTerm.

    Visit a parse tree produced by the queryTermDefault labeled alternative in SqlBaseParser#queryTerm.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  123. def visitQuotedIdentifier(ctx: QuotedIdentifierContext): T

    Visit a parse tree produced by the quotedIdentifier labeled alternative in SqlBaseParser#identifier.

    Visit a parse tree produced by the quotedIdentifier labeled alternative in SqlBaseParser#identifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  124. def visitReadCommitted(ctx: ReadCommittedContext): T

    Visit a parse tree produced by the readCommitted labeled alternative in SqlBaseParser#levelOfIsolation.

    Visit a parse tree produced by the readCommitted labeled alternative in SqlBaseParser#levelOfIsolation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  125. def visitReadUncommitted(ctx: ReadUncommittedContext): T

    Visit a parse tree produced by the readUncommitted labeled alternative in SqlBaseParser#levelOfIsolation.

    Visit a parse tree produced by the readUncommitted labeled alternative in SqlBaseParser#levelOfIsolation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  126. def visitRelationDefault(ctx: RelationDefaultContext): T

    Visit a parse tree produced by the relationDefault labeled alternative in SqlBaseParser#relation.

    Visit a parse tree produced by the relationDefault labeled alternative in SqlBaseParser#relation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  127. def visitRenameColumn(ctx: RenameColumnContext): T

    Visit a parse tree produced by the renameColumn labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the renameColumn labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  128. def visitRenameSchema(ctx: RenameSchemaContext): T

    Visit a parse tree produced by the renameSchema labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the renameSchema labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  129. def visitRenameTable(ctx: RenameTableContext): T

    Visit a parse tree produced by the renameTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the renameTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  130. def visitRepeatableRead(ctx: RepeatableReadContext): T

    Visit a parse tree produced by the repeatableRead labeled alternative in SqlBaseParser#levelOfIsolation.

    Visit a parse tree produced by the repeatableRead labeled alternative in SqlBaseParser#levelOfIsolation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  131. def visitResetSession(ctx: ResetSessionContext): T

    Visit a parse tree produced by the resetSession labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the resetSession labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  132. def visitRevoke(ctx: RevokeContext): T

    Visit a parse tree produced by the revoke labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the revoke labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  133. def visitRollback(ctx: RollbackContext): T

    Visit a parse tree produced by the rollback labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the rollback labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  134. def visitRowConstructor(ctx: RowConstructorContext): T

    Visit a parse tree produced by the rowConstructor labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the rowConstructor labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  135. def visitSearchedCase(ctx: SearchedCaseContext): T

    Visit a parse tree produced by the searchedCase labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the searchedCase labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  136. def visitSelectAll(ctx: SelectAllContext): T

    Visit a parse tree produced by the selectAll labeled alternative in SqlBaseParser#selectItem.

    Visit a parse tree produced by the selectAll labeled alternative in SqlBaseParser#selectItem.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  137. def visitSelectSingle(ctx: SelectSingleContext): T

    Visit a parse tree produced by the selectSingle labeled alternative in SqlBaseParser#selectItem.

    Visit a parse tree produced by the selectSingle labeled alternative in SqlBaseParser#selectItem.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  138. def visitSerializable(ctx: SerializableContext): T

    Visit a parse tree produced by the serializable labeled alternative in SqlBaseParser#levelOfIsolation.

    Visit a parse tree produced by the serializable labeled alternative in SqlBaseParser#levelOfIsolation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  139. def visitSetOperation(ctx: SetOperationContext): T

    Visit a parse tree produced by the setOperation labeled alternative in SqlBaseParser#queryTerm.

    Visit a parse tree produced by the setOperation labeled alternative in SqlBaseParser#queryTerm.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  140. def visitSetQuantifier(ctx: SetQuantifierContext): T

    Visit a parse tree produced by SqlBaseParser#setQuantifier.

    Visit a parse tree produced by SqlBaseParser#setQuantifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  141. def visitSetSession(ctx: SetSessionContext): T

    Visit a parse tree produced by the setSession labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setSession labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  142. def visitShowCatalogs(ctx: ShowCatalogsContext): T

    Visit a parse tree produced by the showCatalogs labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showCatalogs labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  143. def visitShowColumns(ctx: ShowColumnsContext): T

    Visit a parse tree produced by the showColumns labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showColumns labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  144. def visitShowCreateTable(ctx: ShowCreateTableContext): T

    Visit a parse tree produced by the showCreateTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showCreateTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  145. def visitShowCreateView(ctx: ShowCreateViewContext): T

    Visit a parse tree produced by the showCreateView labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showCreateView labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  146. def visitShowFunctions(ctx: ShowFunctionsContext): T

    Visit a parse tree produced by the showFunctions labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showFunctions labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  147. def visitShowGrants(ctx: ShowGrantsContext): T

    Visit a parse tree produced by the showGrants labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showGrants labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  148. def visitShowPartitions(ctx: ShowPartitionsContext): T

    Visit a parse tree produced by the showPartitions labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showPartitions labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  149. def visitShowSchemas(ctx: ShowSchemasContext): T

    Visit a parse tree produced by the showSchemas labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showSchemas labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  150. def visitShowSession(ctx: ShowSessionContext): T

    Visit a parse tree produced by the showSession labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showSession labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  151. def visitShowStats(ctx: ShowStatsContext): T

    Visit a parse tree produced by the showStats labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showStats labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  152. def visitShowStatsForQuery(ctx: ShowStatsForQueryContext): T

    Visit a parse tree produced by the showStatsForQuery labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showStatsForQuery labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  153. def visitShowTables(ctx: ShowTablesContext): T

    Visit a parse tree produced by the showTables labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showTables labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  154. def visitSimpleCase(ctx: SimpleCaseContext): T

    Visit a parse tree produced by the simpleCase labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the simpleCase labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  155. def visitSingleExpression(ctx: SingleExpressionContext): T

    Visit a parse tree produced by SqlBaseParser#singleExpression.

    Visit a parse tree produced by SqlBaseParser#singleExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  156. def visitSingleStatement(ctx: SingleStatementContext): T

    Visit a parse tree produced by SqlBaseParser#singleStatement.

    Visit a parse tree produced by SqlBaseParser#singleStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  157. def visitSortItem(ctx: SortItemContext): T

    Visit a parse tree produced by SqlBaseParser#sortItem.

    Visit a parse tree produced by SqlBaseParser#sortItem.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  158. def visitSpecialDateTimeFunction(ctx: SpecialDateTimeFunctionContext): T

    Visit a parse tree produced by the specialDateTimeFunction labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the specialDateTimeFunction labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  159. def visitStartTransaction(ctx: StartTransactionContext): T

    Visit a parse tree produced by the startTransaction labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the startTransaction labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  160. def visitStatementDefault(ctx: StatementDefaultContext): T

    Visit a parse tree produced by the statementDefault labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the statementDefault labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  161. def visitStringLiteral(ctx: StringLiteralContext): T

    Visit a parse tree produced by the stringLiteral labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the stringLiteral labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  162. def visitSubquery(ctx: SubqueryContext): T

    Visit a parse tree produced by the subquery labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the subquery labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  163. def visitSubqueryExpression(ctx: SubqueryExpressionContext): T

    Visit a parse tree produced by the subqueryExpression labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the subqueryExpression labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  164. def visitSubqueryRelation(ctx: SubqueryRelationContext): T

    Visit a parse tree produced by the subqueryRelation labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the subqueryRelation labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  165. def visitSubscript(ctx: SubscriptContext): T

    Visit a parse tree produced by the subscript labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the subscript labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  166. def visitSubstring(ctx: SubstringContext): T

    Visit a parse tree produced by the substring labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the substring labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  167. def visitTable(ctx: TableContext): T

    Visit a parse tree produced by the table labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the table labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  168. def visitTableElement(ctx: TableElementContext): T

    Visit a parse tree produced by SqlBaseParser#tableElement.

    Visit a parse tree produced by SqlBaseParser#tableElement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  169. def visitTableName(ctx: TableNameContext): T

    Visit a parse tree produced by the tableName labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the tableName labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  170. def visitTerminal(arg0: TerminalNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  171. def visitTimeZoneInterval(ctx: TimeZoneIntervalContext): T

    Visit a parse tree produced by the timeZoneInterval labeled alternative in SqlBaseParser#timeZoneSpecifier.

    Visit a parse tree produced by the timeZoneInterval labeled alternative in SqlBaseParser#timeZoneSpecifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  172. def visitTimeZoneString(ctx: TimeZoneStringContext): T

    Visit a parse tree produced by the timeZoneString labeled alternative in SqlBaseParser#timeZoneSpecifier.

    Visit a parse tree produced by the timeZoneString labeled alternative in SqlBaseParser#timeZoneSpecifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  173. def visitTransactionAccessMode(ctx: TransactionAccessModeContext): T

    Visit a parse tree produced by the transactionAccessMode labeled alternative in SqlBaseParser#transactionMode.

    Visit a parse tree produced by the transactionAccessMode labeled alternative in SqlBaseParser#transactionMode.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  174. def visitType(ctx: TypeContext): T

    Visit a parse tree produced by SqlBaseParser#type.

    Visit a parse tree produced by SqlBaseParser#type.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  175. def visitTypeConstructor(ctx: TypeConstructorContext): T

    Visit a parse tree produced by the typeConstructor labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the typeConstructor labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  176. def visitTypeParameter(ctx: TypeParameterContext): T

    Visit a parse tree produced by SqlBaseParser#typeParameter.

    Visit a parse tree produced by SqlBaseParser#typeParameter.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  177. def visitUnboundedFrame(ctx: UnboundedFrameContext): T

    Visit a parse tree produced by the unboundedFrame labeled alternative in SqlBaseParser#frameBound.

    Visit a parse tree produced by the unboundedFrame labeled alternative in SqlBaseParser#frameBound.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  178. def visitUnicodeStringLiteral(ctx: UnicodeStringLiteralContext): T

    Visit a parse tree produced by the unicodeStringLiteral labeled alternative in SqlBaseParser#str.

    Visit a parse tree produced by the unicodeStringLiteral labeled alternative in SqlBaseParser#str.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  179. def visitUnnest(ctx: UnnestContext): T

    Visit a parse tree produced by the unnest labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the unnest labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  180. def visitUnquotedIdentifier(ctx: UnquotedIdentifierContext): T

    Visit a parse tree produced by the unquotedIdentifier labeled alternative in SqlBaseParser#identifier.

    Visit a parse tree produced by the unquotedIdentifier labeled alternative in SqlBaseParser#identifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  181. def visitUse(ctx: UseContext): T

    Visit a parse tree produced by the use labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the use labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  182. def visitValueExpressionDefault(ctx: ValueExpressionDefaultContext): T

    Visit a parse tree produced by the valueExpressionDefault labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the valueExpressionDefault labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  183. def visitWhenClause(ctx: WhenClauseContext): T

    Visit a parse tree produced by SqlBaseParser#whenClause.

    Visit a parse tree produced by SqlBaseParser#whenClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  184. def visitWindowFrame(ctx: WindowFrameContext): T

    Visit a parse tree produced by SqlBaseParser#windowFrame.

    Visit a parse tree produced by SqlBaseParser#windowFrame.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  185. def visitWith(ctx: WithContext): T

    Visit a parse tree produced by SqlBaseParser#with.

    Visit a parse tree produced by SqlBaseParser#with.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseBaseVisitorSqlBaseVisitor
    Annotations
    @Override()
  186. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  187. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  188. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
    Deprecated

Inherited from SqlBaseVisitor[T]

Inherited from AbstractParseTreeVisitor[T]

Inherited from ParseTreeVisitor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped