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:
SCIMFilterBaseVisitor,SearchCondVisitor
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 theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced bySCIMFilterParser.criteria().Visit a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().Visit a parse tree produced bySCIMFilterParser.operator().Visit a parse tree produced bySCIMFilterParser.scimFilter().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitScimFilter
Visit a parse tree produced bySCIMFilterParser.scimFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitATTR_PR
Visit a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLBRAC_EXPR_RBRAC
Visit a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitATTR_OPER_EXPR
Visit a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEXPR_OR_EXPR
Visit a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEXPR_OPER_EXPR
Visit a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNOT_EXPR
Visit a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEXPR_AND_EXPR
Visit a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitATTR_OPER_CRITERIA
Visit a parse tree produced by theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLPAREN_EXPR_RPAREN
Visit a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCriteria
Visit a parse tree produced bySCIMFilterParser.criteria().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperator
Visit a parse tree produced bySCIMFilterParser.operator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-