c

es.weso.shapepath.parser

SchemaMappingsDocBaseVisitor

class SchemaMappingsDocBaseVisitor[T] extends AbstractParseTreeVisitor[T] with SchemaMappingsDocVisitor[T]

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

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

Instance Constructors

  1. new SchemaMappingsDocBaseVisitor()

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() @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: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_]
    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 visitAbsolutePathExpr(ctx: AbsolutePathExprContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#absolutePathExpr.

    Visit a parse tree produced by SchemaMappingsDocParser#absolutePathExpr.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  21. def visitBaseDecl(ctx: BaseDeclContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#baseDecl.

    Visit a parse tree produced by SchemaMappingsDocParser#baseDecl.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  22. def visitBlankNode(ctx: BlankNodeContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#blankNode.

    Visit a parse tree produced by SchemaMappingsDocParser#blankNode.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  23. def visitBlankNodeLabel(ctx: BlankNodeLabelContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#blankNodeLabel.

    Visit a parse tree produced by SchemaMappingsDocParser#blankNodeLabel.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  24. def visitBooleanLiteral(ctx: BooleanLiteralContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#booleanLiteral.

    Visit a parse tree produced by SchemaMappingsDocParser#booleanLiteral.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  25. def visitChildren(arg0: RuleNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  26. def visitContextStep(ctx: ContextStepContext): T

    Visit a parse tree produced by the contextStep labeled alternative in SchemaMappingsDocParser#stepExpr.

    Visit a parse tree produced by the contextStep labeled alternative in SchemaMappingsDocParser#stepExpr.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  27. def visitContextTest(ctx: ContextTestContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#contextTest.

    Visit a parse tree produced by SchemaMappingsDocParser#contextTest.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  28. def visitDatatype(ctx: DatatypeContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#datatype.

    Visit a parse tree produced by SchemaMappingsDocParser#datatype.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  29. def visitDirective(ctx: DirectiveContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#directive.

    Visit a parse tree produced by SchemaMappingsDocParser#directive.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  30. def visitErrorNode(arg0: ErrorNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  31. def visitExprIndex(ctx: ExprIndexContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#exprIndex.

    Visit a parse tree produced by SchemaMappingsDocParser#exprIndex.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  32. def visitExprIndexStep(ctx: ExprIndexStepContext): T

    Visit a parse tree produced by the exprIndexStep labeled alternative in SchemaMappingsDocParser#stepExpr.

    Visit a parse tree produced by the exprIndexStep labeled alternative in SchemaMappingsDocParser#stepExpr.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  33. def visitImportDecl(ctx: ImportDeclContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#importDecl.

    Visit a parse tree produced by SchemaMappingsDocParser#importDecl.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  34. def visitIri(ctx: IriContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#iri.

    Visit a parse tree produced by SchemaMappingsDocParser#iri.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  35. def visitMapping(ctx: MappingContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#mapping.

    Visit a parse tree produced by SchemaMappingsDocParser#mapping.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  36. def visitMappings(ctx: MappingsContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#mappings.

    Visit a parse tree produced by SchemaMappingsDocParser#mappings.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  37. def visitNumericLiteral(ctx: NumericLiteralContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#numericLiteral.

    Visit a parse tree produced by SchemaMappingsDocParser#numericLiteral.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  38. def visitPredicate(ctx: PredicateContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#predicate.

    Visit a parse tree produced by SchemaMappingsDocParser#predicate.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  39. def visitPrefixDecl(ctx: PrefixDeclContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#prefixDecl.

    Visit a parse tree produced by SchemaMappingsDocParser#prefixDecl.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  40. def visitPrefixedName(ctx: PrefixedNameContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#prefixedName.

    Visit a parse tree produced by SchemaMappingsDocParser#prefixedName.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  41. def visitRdfLiteral(ctx: RdfLiteralContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#rdfLiteral.

    Visit a parse tree produced by SchemaMappingsDocParser#rdfLiteral.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  42. def visitRdfType(ctx: RdfTypeContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#rdfType.

    Visit a parse tree produced by SchemaMappingsDocParser#rdfType.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  43. def visitRelativePathExpr(ctx: RelativePathExprContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#relativePathExpr.

    Visit a parse tree produced by SchemaMappingsDocParser#relativePathExpr.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  44. def visitSchemaMappingsDoc(ctx: SchemaMappingsDocContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#schemaMappingsDoc.

    Visit a parse tree produced by SchemaMappingsDocParser#schemaMappingsDoc.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  45. def visitShapeExprContext(ctx: ShapeExprContextContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#shapeExprContext.

    Visit a parse tree produced by SchemaMappingsDocParser#shapeExprContext.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  46. def visitShapeExprIndex(ctx: ShapeExprIndexContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#shapeExprIndex.

    Visit a parse tree produced by SchemaMappingsDocParser#shapeExprIndex.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  47. def visitShapeExprLabel(ctx: ShapeExprLabelContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#shapeExprLabel.

    Visit a parse tree produced by SchemaMappingsDocParser#shapeExprLabel.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  48. def visitShapePathExpr(ctx: ShapePathExprContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#shapePathExpr.

    Visit a parse tree produced by SchemaMappingsDocParser#shapePathExpr.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  49. def visitString(ctx: StringContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#string.

    Visit a parse tree produced by SchemaMappingsDocParser#string.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  50. def visitTerminal(arg0: TerminalNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  51. def visitTripleExprContext(ctx: TripleExprContextContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#tripleExprContext.

    Visit a parse tree produced by SchemaMappingsDocParser#tripleExprContext.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  52. def visitTripleExprIndex(ctx: TripleExprIndexContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#tripleExprIndex.

    Visit a parse tree produced by SchemaMappingsDocParser#tripleExprIndex.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  53. def visitTripleExprLabel(ctx: TripleExprLabelContext): T

    Visit a parse tree produced by SchemaMappingsDocParser#tripleExprLabel.

    Visit a parse tree produced by SchemaMappingsDocParser#tripleExprLabel.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SchemaMappingsDocBaseVisitorSchemaMappingsDocVisitor
    Annotations
    @Override()
  54. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  56. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

Inherited from SchemaMappingsDocVisitor[T]

Inherited from AbstractParseTreeVisitor[T]

Inherited from ParseTreeVisitor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped