Interface SCIMFilterVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for 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_CRITERIA
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theATTR_OPER_EXPR
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theATTR_PR
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced bySCIMFilterParser.criteria()
.Visit a parse tree produced by theEXPR_AND_EXPR
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theEXPR_OPER_EXPR
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theEXPR_OR_EXPR
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theLBRAC_EXPR_RBRAC
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theLPAREN_EXPR_RPAREN
labeled alternative inSCIMFilterParser.expression()
.Visit a parse tree produced by theNOT_EXPR
labeled 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_PR
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLBRAC_EXPR_RBRAC
Visit a parse tree produced by theLBRAC_EXPR_RBRAC
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitATTR_OPER_EXPR
Visit a parse tree produced by theATTR_OPER_EXPR
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEXPR_OR_EXPR
Visit a parse tree produced by theEXPR_OR_EXPR
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEXPR_OPER_EXPR
Visit a parse tree produced by theEXPR_OPER_EXPR
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNOT_EXPR
Visit a parse tree produced by theNOT_EXPR
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEXPR_AND_EXPR
Visit a parse tree produced by theEXPR_AND_EXPR
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitATTR_OPER_CRITERIA
Visit a parse tree produced by theATTR_OPER_CRITERIA
labeled alternative inSCIMFilterParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLPAREN_EXPR_RPAREN
Visit a parse tree produced by theLPAREN_EXPR_RPAREN
labeled 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
-