Class SCIMFilterBaseListener
- java.lang.Object
-
- org.apache.syncope.core.logic.scim.SCIMFilterBaseListener
-
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,SCIMFilterListener
public class SCIMFilterBaseListener extends Object implements SCIMFilterListener
This class provides an empty implementation ofSCIMFilterListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description SCIMFilterBaseListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenterATTR_OPER_CRITERIA(SCIMFilterParser.ATTR_OPER_CRITERIAContext ctx)Enter a parse tree produced by theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().voidenterATTR_OPER_EXPR(SCIMFilterParser.ATTR_OPER_EXPRContext ctx)Enter a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().voidenterATTR_PR(SCIMFilterParser.ATTR_PRContext ctx)Enter a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().voidenterCriteria(SCIMFilterParser.CriteriaContext ctx)Enter a parse tree produced bySCIMFilterParser.criteria().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidenterEXPR_AND_EXPR(SCIMFilterParser.EXPR_AND_EXPRContext ctx)Enter a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().voidenterEXPR_OPER_EXPR(SCIMFilterParser.EXPR_OPER_EXPRContext ctx)Enter a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().voidenterEXPR_OR_EXPR(SCIMFilterParser.EXPR_OR_EXPRContext ctx)Enter a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().voidenterLBRAC_EXPR_RBRAC(SCIMFilterParser.LBRAC_EXPR_RBRACContext ctx)Enter a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().voidenterLPAREN_EXPR_RPAREN(SCIMFilterParser.LPAREN_EXPR_RPARENContext ctx)Enter a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().voidenterNOT_EXPR(SCIMFilterParser.NOT_EXPRContext ctx)Enter a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().voidenterOperator(SCIMFilterParser.OperatorContext ctx)Enter a parse tree produced bySCIMFilterParser.operator().voidenterScimFilter(SCIMFilterParser.ScimFilterContext ctx)Enter a parse tree produced bySCIMFilterParser.scimFilter().voidexitATTR_OPER_CRITERIA(SCIMFilterParser.ATTR_OPER_CRITERIAContext ctx)Exit a parse tree produced by theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().voidexitATTR_OPER_EXPR(SCIMFilterParser.ATTR_OPER_EXPRContext ctx)Exit a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().voidexitATTR_PR(SCIMFilterParser.ATTR_PRContext ctx)Exit a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().voidexitCriteria(SCIMFilterParser.CriteriaContext ctx)Exit a parse tree produced bySCIMFilterParser.criteria().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidexitEXPR_AND_EXPR(SCIMFilterParser.EXPR_AND_EXPRContext ctx)Exit a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().voidexitEXPR_OPER_EXPR(SCIMFilterParser.EXPR_OPER_EXPRContext ctx)Exit a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().voidexitEXPR_OR_EXPR(SCIMFilterParser.EXPR_OR_EXPRContext ctx)Exit a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().voidexitLBRAC_EXPR_RBRAC(SCIMFilterParser.LBRAC_EXPR_RBRACContext ctx)Exit a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().voidexitLPAREN_EXPR_RPAREN(SCIMFilterParser.LPAREN_EXPR_RPARENContext ctx)Exit a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().voidexitNOT_EXPR(SCIMFilterParser.NOT_EXPRContext ctx)Exit a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().voidexitOperator(SCIMFilterParser.OperatorContext ctx)Exit a parse tree produced bySCIMFilterParser.operator().voidexitScimFilter(SCIMFilterParser.ScimFilterContext ctx)Exit a parse tree produced bySCIMFilterParser.scimFilter().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
-
-
Method Detail
-
enterScimFilter
public void enterScimFilter(SCIMFilterParser.ScimFilterContext ctx)
Enter a parse tree produced bySCIMFilterParser.scimFilter().The default implementation does nothing.
- Specified by:
enterScimFilterin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitScimFilter
public void exitScimFilter(SCIMFilterParser.ScimFilterContext ctx)
Exit a parse tree produced bySCIMFilterParser.scimFilter().The default implementation does nothing.
- Specified by:
exitScimFilterin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterATTR_PR
public void enterATTR_PR(SCIMFilterParser.ATTR_PRContext ctx)
Enter a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterATTR_PRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitATTR_PR
public void exitATTR_PR(SCIMFilterParser.ATTR_PRContext ctx)
Exit a parse tree produced by theATTR_PRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitATTR_PRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterLBRAC_EXPR_RBRAC
public void enterLBRAC_EXPR_RBRAC(SCIMFilterParser.LBRAC_EXPR_RBRACContext ctx)
Enter a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterLBRAC_EXPR_RBRACin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitLBRAC_EXPR_RBRAC
public void exitLBRAC_EXPR_RBRAC(SCIMFilterParser.LBRAC_EXPR_RBRACContext ctx)
Exit a parse tree produced by theLBRAC_EXPR_RBRAClabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitLBRAC_EXPR_RBRACin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterATTR_OPER_EXPR
public void enterATTR_OPER_EXPR(SCIMFilterParser.ATTR_OPER_EXPRContext ctx)
Enter a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterATTR_OPER_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitATTR_OPER_EXPR
public void exitATTR_OPER_EXPR(SCIMFilterParser.ATTR_OPER_EXPRContext ctx)
Exit a parse tree produced by theATTR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitATTR_OPER_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterEXPR_OR_EXPR
public void enterEXPR_OR_EXPR(SCIMFilterParser.EXPR_OR_EXPRContext ctx)
Enter a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterEXPR_OR_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitEXPR_OR_EXPR
public void exitEXPR_OR_EXPR(SCIMFilterParser.EXPR_OR_EXPRContext ctx)
Exit a parse tree produced by theEXPR_OR_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitEXPR_OR_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterEXPR_OPER_EXPR
public void enterEXPR_OPER_EXPR(SCIMFilterParser.EXPR_OPER_EXPRContext ctx)
Enter a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterEXPR_OPER_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitEXPR_OPER_EXPR
public void exitEXPR_OPER_EXPR(SCIMFilterParser.EXPR_OPER_EXPRContext ctx)
Exit a parse tree produced by theEXPR_OPER_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitEXPR_OPER_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterNOT_EXPR
public void enterNOT_EXPR(SCIMFilterParser.NOT_EXPRContext ctx)
Enter a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterNOT_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitNOT_EXPR
public void exitNOT_EXPR(SCIMFilterParser.NOT_EXPRContext ctx)
Exit a parse tree produced by theNOT_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitNOT_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterEXPR_AND_EXPR
public void enterEXPR_AND_EXPR(SCIMFilterParser.EXPR_AND_EXPRContext ctx)
Enter a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterEXPR_AND_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitEXPR_AND_EXPR
public void exitEXPR_AND_EXPR(SCIMFilterParser.EXPR_AND_EXPRContext ctx)
Exit a parse tree produced by theEXPR_AND_EXPRlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitEXPR_AND_EXPRin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterATTR_OPER_CRITERIA
public void enterATTR_OPER_CRITERIA(SCIMFilterParser.ATTR_OPER_CRITERIAContext ctx)
Enter a parse tree produced by theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterATTR_OPER_CRITERIAin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitATTR_OPER_CRITERIA
public void exitATTR_OPER_CRITERIA(SCIMFilterParser.ATTR_OPER_CRITERIAContext ctx)
Exit a parse tree produced by theATTR_OPER_CRITERIAlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitATTR_OPER_CRITERIAin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterLPAREN_EXPR_RPAREN
public void enterLPAREN_EXPR_RPAREN(SCIMFilterParser.LPAREN_EXPR_RPARENContext ctx)
Enter a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
enterLPAREN_EXPR_RPARENin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitLPAREN_EXPR_RPAREN
public void exitLPAREN_EXPR_RPAREN(SCIMFilterParser.LPAREN_EXPR_RPARENContext ctx)
Exit a parse tree produced by theLPAREN_EXPR_RPARENlabeled alternative inSCIMFilterParser.expression().The default implementation does nothing.
- Specified by:
exitLPAREN_EXPR_RPARENin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterCriteria
public void enterCriteria(SCIMFilterParser.CriteriaContext ctx)
Enter a parse tree produced bySCIMFilterParser.criteria().The default implementation does nothing.
- Specified by:
enterCriteriain interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitCriteria
public void exitCriteria(SCIMFilterParser.CriteriaContext ctx)
Exit a parse tree produced bySCIMFilterParser.criteria().The default implementation does nothing.
- Specified by:
exitCriteriain interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterOperator
public void enterOperator(SCIMFilterParser.OperatorContext ctx)
Enter a parse tree produced bySCIMFilterParser.operator().The default implementation does nothing.
- Specified by:
enterOperatorin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
exitOperator
public void exitOperator(SCIMFilterParser.OperatorContext ctx)
Exit a parse tree produced bySCIMFilterParser.operator().The default implementation does nothing.
- Specified by:
exitOperatorin interfaceSCIMFilterListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-