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 bySCIMFilterParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitScimFilter
T visitScimFilter(SCIMFilterParser.ScimFilterContext ctx)
Visit a parse tree produced bySCIMFilterParser.scimFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitATTR_PR
T visitATTR_PR(SCIMFilterParser.ATTR_PRContext ctx)
Visit a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLBRAC_EXPR_RBRAC
T visitLBRAC_EXPR_RBRAC(SCIMFilterParser.LBRAC_EXPR_RBRACContext ctx)
Visit a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitATTR_OPER_EXPR
T visitATTR_OPER_EXPR(SCIMFilterParser.ATTR_OPER_EXPRContext ctx)
Visit a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEXPR_OR_EXPR
T visitEXPR_OR_EXPR(SCIMFilterParser.EXPR_OR_EXPRContext ctx)
Visit a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEXPR_OPER_EXPR
T visitEXPR_OPER_EXPR(SCIMFilterParser.EXPR_OPER_EXPRContext ctx)
Visit a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNOT_EXPR
T visitNOT_EXPR(SCIMFilterParser.NOT_EXPRContext ctx)
Visit a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEXPR_AND_EXPR
T visitEXPR_AND_EXPR(SCIMFilterParser.EXPR_AND_EXPRContext ctx)
Visit a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitATTR_OPER_CRITERIA
T visitATTR_OPER_CRITERIA(SCIMFilterParser.ATTR_OPER_CRITERIAContext ctx)
Visit a parse tree produced by theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLPAREN_EXPR_RPAREN
T visitLPAREN_EXPR_RPAREN(SCIMFilterParser.LPAREN_EXPR_RPARENContext ctx)
Visit a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCriteria
T visitCriteria(SCIMFilterParser.CriteriaContext ctx)
Visit a parse tree produced bySCIMFilterParser.criteria().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperator
T visitOperator(SCIMFilterParser.OperatorContext ctx)
Visit a parse tree produced bySCIMFilterParser.operator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-