Class ScimFilterBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
ScimFilterVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- Direct Known Subclasses:
FilterVisitor
ScimFilterVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced by theandExpressionlabeled alternative inScimFilterParser.filter().Visit a parse tree produced by theattrExpressionlabeled alternative inScimFilterParser.filter().Visit a parse tree produced byScimFilterParser.attributeExpression().Visit a parse tree produced byScimFilterParser.attributePath().Visit a parse tree produced byScimFilterParser.compareOperator().Visit a parse tree produced byScimFilterParser.compareValue().Visit a parse tree produced by thenotExpressionlabeled alternative inScimFilterParser.filter().Visit a parse tree produced by theorExpressionlabeled alternative inScimFilterParser.filter().Visit a parse tree produced by theparenthesisExpressionlabeled alternative inScimFilterParser.filter().Visit a parse tree produced byScimFilterParser.valuePath().Visit a parse tree produced by thevaluePathExpressionlabeled alternative inScimFilterParser.filter().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
ScimFilterBaseVisitor
public ScimFilterBaseVisitor()
-
-
Method Details
-
visitValuePathExpression
Visit a parse tree produced by thevaluePathExpressionlabeled alternative inScimFilterParser.filter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuePathExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrExpression
Visit a parse tree produced by theorExpressionlabeled alternative inScimFilterParser.filter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndExpression
Visit a parse tree produced by theandExpressionlabeled alternative inScimFilterParser.filter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAndExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttrExpression
Visit a parse tree produced by theattrExpressionlabeled alternative inScimFilterParser.filter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttrExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesisExpression
Visit a parse tree produced by theparenthesisExpressionlabeled alternative inScimFilterParser.filter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParenthesisExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpression
Visit a parse tree produced by thenotExpressionlabeled alternative inScimFilterParser.filter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNotExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeExpression
Visit a parse tree produced byScimFilterParser.attributeExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeExpressionin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuePath
Visit a parse tree produced byScimFilterParser.valuePath().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuePathin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributePath
Visit a parse tree produced byScimFilterParser.attributePath().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributePathin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompareOperator
Visit a parse tree produced byScimFilterParser.compareOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCompareOperatorin interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompareValue
Visit a parse tree produced byScimFilterParser.compareValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCompareValuein interfaceScimFilterVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-