Packages

c

za.co.absa.cobrix.cobol.parser.antlr

jsonBaseVisitor

class jsonBaseVisitor[T] extends AbstractParseTreeVisitor[T] with jsonVisitor[T]

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

Linear Supertypes
jsonVisitor[T], AbstractParseTreeVisitor[T], ParseTreeVisitor[T], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. jsonBaseVisitor
  2. jsonVisitor
  3. AbstractParseTreeVisitor
  4. ParseTreeVisitor
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new jsonBaseVisitor()

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( ... ) @native()
  7. def defaultResult(): T
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def shouldVisitNextChild(arg0: RuleNode, arg1: T): Boolean
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. def visit(arg0: ParseTree): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  21. def visitArr(ctx: ArrContext): T

    Visit a parse tree produced by jsonParser#arr.

    Visit a parse tree produced by jsonParser#arr.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  22. def visitChildren(arg0: RuleNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  23. def visitErrorNode(arg0: ErrorNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  24. def visitJson(ctx: JsonContext): T

    Visit a parse tree produced by jsonParser#json.

    Visit a parse tree produced by jsonParser#json.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  25. def visitObj(ctx: ObjContext): T

    Visit a parse tree produced by jsonParser#obj.

    Visit a parse tree produced by jsonParser#obj.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  26. def visitPair(ctx: PairContext): T

    Visit a parse tree produced by jsonParser#pair.

    Visit a parse tree produced by jsonParser#pair.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  27. def visitTerminal(arg0: TerminalNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  28. def visitValue_array(ctx: Value_arrayContext): T

    Visit a parse tree produced by the value_array labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_array labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  29. def visitValue_false(ctx: Value_falseContext): T

    Visit a parse tree produced by the value_false labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_false labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  30. def visitValue_null(ctx: Value_nullContext): T

    Visit a parse tree produced by the value_null labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_null labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  31. def visitValue_number(ctx: Value_numberContext): T

    Visit a parse tree produced by the value_number labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_number labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  32. def visitValue_obj(ctx: Value_objContext): T

    Visit a parse tree produced by the value_obj labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_obj labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  33. def visitValue_string(ctx: Value_stringContext): T

    Visit a parse tree produced by the value_string labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_string labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  34. def visitValue_true(ctx: Value_trueContext): T

    Visit a parse tree produced by the value_true labeled alternative in jsonParser#value.

    Visit a parse tree produced by the value_true labeled alternative in jsonParser#value.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    jsonBaseVisitorjsonVisitor
    Annotations
    @Override()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from jsonVisitor[T]

Inherited from AbstractParseTreeVisitor[T]

Inherited from ParseTreeVisitor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped