Interface ScimFilterVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
FilterVisitor,ScimFilterBaseVisitor
public interface ScimFilterVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
ScimFilterParser.-
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 interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitValuePathExpression
Visit a parse tree produced by thevaluePathExpressionlabeled alternative inScimFilterParser.filter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrExpression
Visit a parse tree produced by theorExpressionlabeled alternative inScimFilterParser.filter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndExpression
Visit a parse tree produced by theandExpressionlabeled alternative inScimFilterParser.filter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttrExpression
Visit a parse tree produced by theattrExpressionlabeled alternative inScimFilterParser.filter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesisExpression
Visit a parse tree produced by theparenthesisExpressionlabeled alternative inScimFilterParser.filter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpression
Visit a parse tree produced by thenotExpressionlabeled alternative inScimFilterParser.filter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeExpression
Visit a parse tree produced byScimFilterParser.attributeExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuePath
Visit a parse tree produced byScimFilterParser.valuePath().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributePath
Visit a parse tree produced byScimFilterParser.attributePath().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompareOperator
Visit a parse tree produced byScimFilterParser.compareOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompareValue
Visit a parse tree produced byScimFilterParser.compareValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-