c

es.weso.shapemaps.parser

NodeSelectorBaseVisitor

class NodeSelectorBaseVisitor[T] extends AbstractParseTreeVisitor[T] with NodeSelectorVisitor[T]

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

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

Instance Constructors

  1. new NodeSelectorBaseVisitor()

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 visitBlankNode(ctx: BlankNodeContext): T

    Visit a parse tree produced by NodeSelectorParser#blankNode.

    Visit a parse tree produced by NodeSelectorParser#blankNode.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  21. def visitBooleanLiteral(ctx: BooleanLiteralContext): T

    Visit a parse tree produced by NodeSelectorParser#booleanLiteral.

    Visit a parse tree produced by NodeSelectorParser#booleanLiteral.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  22. def visitChildren(arg0: RuleNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  23. def visitDatatype(ctx: DatatypeContext): T

    Visit a parse tree produced by NodeSelectorParser#datatype.

    Visit a parse tree produced by NodeSelectorParser#datatype.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  24. def visitErrorNode(arg0: ErrorNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  25. def visitExtended(ctx: ExtendedContext): T

    Visit a parse tree produced by NodeSelectorParser#extended.

    Visit a parse tree produced by NodeSelectorParser#extended.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  26. def visitFocusObject(ctx: FocusObjectContext): T

    Visit a parse tree produced by the focusObject labeled alternative in NodeSelectorParser#triplePattern.

    Visit a parse tree produced by the focusObject labeled alternative in NodeSelectorParser#triplePattern.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  27. def visitFocusSubject(ctx: FocusSubjectContext): T

    Visit a parse tree produced by the focusSubject labeled alternative in NodeSelectorParser#triplePattern.

    Visit a parse tree produced by the focusSubject labeled alternative in NodeSelectorParser#triplePattern.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  28. def visitInverse(ctx: InverseContext): T

    Visit a parse tree produced by NodeSelectorParser#inverse.

    Visit a parse tree produced by NodeSelectorParser#inverse.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  29. def visitLiteral(ctx: LiteralContext): T

    Visit a parse tree produced by NodeSelectorParser#literal.

    Visit a parse tree produced by NodeSelectorParser#literal.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  30. def visitNegation(ctx: NegationContext): T

    Visit a parse tree produced by NodeSelectorParser#negation.

    Visit a parse tree produced by NodeSelectorParser#negation.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  31. def visitNodeIri(ctx: NodeIriContext): T

    Visit a parse tree produced by NodeSelectorParser#nodeIri.

    Visit a parse tree produced by NodeSelectorParser#nodeIri.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  32. def visitNodeSelector(ctx: NodeSelectorContext): T

    Visit a parse tree produced by NodeSelectorParser#nodeSelector.

    Visit a parse tree produced by NodeSelectorParser#nodeSelector.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  33. def visitNumericLiteral(ctx: NumericLiteralContext): T

    Visit a parse tree produced by NodeSelectorParser#numericLiteral.

    Visit a parse tree produced by NodeSelectorParser#numericLiteral.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  34. def visitObjectTerm(ctx: ObjectTermContext): T

    Visit a parse tree produced by NodeSelectorParser#objectTerm.

    Visit a parse tree produced by NodeSelectorParser#objectTerm.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  35. def visitOptional(ctx: OptionalContext): T

    Visit a parse tree produced by the optional labeled alternative in NodeSelectorParser#pathMod.

    Visit a parse tree produced by the optional labeled alternative in NodeSelectorParser#pathMod.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  36. def visitPath(ctx: PathContext): T

    Visit a parse tree produced by NodeSelectorParser#path.

    Visit a parse tree produced by NodeSelectorParser#path.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  37. def visitPathAlternative(ctx: PathAlternativeContext): T

    Visit a parse tree produced by NodeSelectorParser#pathAlternative.

    Visit a parse tree produced by NodeSelectorParser#pathAlternative.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  38. def visitPathElt(ctx: PathEltContext): T

    Visit a parse tree produced by NodeSelectorParser#pathElt.

    Visit a parse tree produced by NodeSelectorParser#pathElt.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  39. def visitPathEltOrInverse(ctx: PathEltOrInverseContext): T

    Visit a parse tree produced by NodeSelectorParser#pathEltOrInverse.

    Visit a parse tree produced by NodeSelectorParser#pathEltOrInverse.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  40. def visitPathPrimary(ctx: PathPrimaryContext): T

    Visit a parse tree produced by NodeSelectorParser#pathPrimary.

    Visit a parse tree produced by NodeSelectorParser#pathPrimary.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  41. def visitPathSequence(ctx: PathSequenceContext): T

    Visit a parse tree produced by NodeSelectorParser#pathSequence.

    Visit a parse tree produced by NodeSelectorParser#pathSequence.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  42. def visitPlus(ctx: PlusContext): T

    Visit a parse tree produced by the plus labeled alternative in NodeSelectorParser#pathMod.

    Visit a parse tree produced by the plus labeled alternative in NodeSelectorParser#pathMod.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  43. def visitPredicate(ctx: PredicateContext): T

    Visit a parse tree produced by NodeSelectorParser#predicate.

    Visit a parse tree produced by NodeSelectorParser#predicate.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  44. def visitPrefixedName(ctx: PrefixedNameContext): T

    Visit a parse tree produced by NodeSelectorParser#prefixedName.

    Visit a parse tree produced by NodeSelectorParser#prefixedName.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  45. def visitQuestionMark(ctx: QuestionMarkContext): T

    Visit a parse tree produced by NodeSelectorParser#questionMark.

    Visit a parse tree produced by NodeSelectorParser#questionMark.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  46. def visitRdfLiteral(ctx: RdfLiteralContext): T

    Visit a parse tree produced by NodeSelectorParser#rdfLiteral.

    Visit a parse tree produced by NodeSelectorParser#rdfLiteral.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  47. def visitRdfType(ctx: RdfTypeContext): T

    Visit a parse tree produced by NodeSelectorParser#rdfType.

    Visit a parse tree produced by NodeSelectorParser#rdfType.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  48. def visitShapeIri(ctx: ShapeIriContext): T

    Visit a parse tree produced by NodeSelectorParser#shapeIri.

    Visit a parse tree produced by NodeSelectorParser#shapeIri.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  49. def visitStar(ctx: StarContext): T

    Visit a parse tree produced by the star labeled alternative in NodeSelectorParser#pathMod.

    Visit a parse tree produced by the star labeled alternative in NodeSelectorParser#pathMod.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  50. def visitString(ctx: StringContext): T

    Visit a parse tree produced by NodeSelectorParser#string.

    Visit a parse tree produced by NodeSelectorParser#string.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  51. def visitSubjectTerm(ctx: SubjectTermContext): T

    Visit a parse tree produced by NodeSelectorParser#subjectTerm.

    Visit a parse tree produced by NodeSelectorParser#subjectTerm.

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

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    NodeSelectorBaseVisitorNodeSelectorVisitor
    Annotations
    @Override()
  52. def visitTerminal(arg0: TerminalNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  53. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  55. 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 NodeSelectorVisitor[T]

Inherited from AbstractParseTreeVisitor[T]

Inherited from ParseTreeVisitor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped