Class ScimFilterBaseListener
- java.lang.Object
-
- io.jans.scim.service.antlr.scimFilter.antlr4.ScimFilterBaseListener
-
- All Implemented Interfaces:
ScimFilterListener
,org.antlr.v4.runtime.tree.ParseTreeListener
- Direct Known Subclasses:
FilterListener
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 void
enterAndFilter(ScimFilterParser.AndFilterContext ctx)
Enter a parse tree produced by theandFilter
labeled alternative inScimFilterParser.filter()
.void
enterAttrexp(ScimFilterParser.AttrexpContext ctx)
Enter a parse tree produced byScimFilterParser.attrexp()
.void
enterAttrpath(ScimFilterParser.AttrpathContext ctx)
Enter a parse tree produced byScimFilterParser.attrpath()
.void
enterCompareop(ScimFilterParser.CompareopContext ctx)
Enter a parse tree produced byScimFilterParser.compareop()
.void
enterCompvalue(ScimFilterParser.CompvalueContext ctx)
Enter a parse tree produced byScimFilterParser.compvalue()
.void
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
void
enterNegatedFilter(ScimFilterParser.NegatedFilterContext ctx)
Enter a parse tree produced by thenegatedFilter
labeled alternative inScimFilterParser.filter()
.void
enterOrFilter(ScimFilterParser.OrFilterContext ctx)
Enter a parse tree produced by theorFilter
labeled alternative inScimFilterParser.filter()
.void
enterSimpleExpr(ScimFilterParser.SimpleExprContext ctx)
Enter a parse tree produced by thesimpleExpr
labeled alternative inScimFilterParser.filter()
.void
exitAndFilter(ScimFilterParser.AndFilterContext ctx)
Exit a parse tree produced by theandFilter
labeled alternative inScimFilterParser.filter()
.void
exitAttrexp(ScimFilterParser.AttrexpContext ctx)
Exit a parse tree produced byScimFilterParser.attrexp()
.void
exitAttrpath(ScimFilterParser.AttrpathContext ctx)
Exit a parse tree produced byScimFilterParser.attrpath()
.void
exitCompareop(ScimFilterParser.CompareopContext ctx)
Exit a parse tree produced byScimFilterParser.compareop()
.void
exitCompvalue(ScimFilterParser.CompvalueContext ctx)
Exit a parse tree produced byScimFilterParser.compvalue()
.void
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
void
exitNegatedFilter(ScimFilterParser.NegatedFilterContext ctx)
Exit a parse tree produced by thenegatedFilter
labeled alternative inScimFilterParser.filter()
.void
exitOrFilter(ScimFilterParser.OrFilterContext ctx)
Exit a parse tree produced by theorFilter
labeled alternative inScimFilterParser.filter()
.void
exitSimpleExpr(ScimFilterParser.SimpleExprContext ctx)
Exit a parse tree produced by thesimpleExpr
labeled alternative inScimFilterParser.filter()
.void
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
void
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
-
-
Method Detail
-
enterAttrpath
public void enterAttrpath(ScimFilterParser.AttrpathContext ctx)
Enter a parse tree produced byScimFilterParser.attrpath()
.The default implementation does nothing.
- Specified by:
enterAttrpath
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitAttrpath
public void exitAttrpath(ScimFilterParser.AttrpathContext ctx)
Exit a parse tree produced byScimFilterParser.attrpath()
.The default implementation does nothing.
- Specified by:
exitAttrpath
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterCompareop
public void enterCompareop(ScimFilterParser.CompareopContext ctx)
Enter a parse tree produced byScimFilterParser.compareop()
.The default implementation does nothing.
- Specified by:
enterCompareop
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitCompareop
public void exitCompareop(ScimFilterParser.CompareopContext ctx)
Exit a parse tree produced byScimFilterParser.compareop()
.The default implementation does nothing.
- Specified by:
exitCompareop
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterCompvalue
public void enterCompvalue(ScimFilterParser.CompvalueContext ctx)
Enter a parse tree produced byScimFilterParser.compvalue()
.The default implementation does nothing.
- Specified by:
enterCompvalue
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitCompvalue
public void exitCompvalue(ScimFilterParser.CompvalueContext ctx)
Exit a parse tree produced byScimFilterParser.compvalue()
.The default implementation does nothing.
- Specified by:
exitCompvalue
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterAttrexp
public void enterAttrexp(ScimFilterParser.AttrexpContext ctx)
Enter a parse tree produced byScimFilterParser.attrexp()
.The default implementation does nothing.
- Specified by:
enterAttrexp
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitAttrexp
public void exitAttrexp(ScimFilterParser.AttrexpContext ctx)
Exit a parse tree produced byScimFilterParser.attrexp()
.The default implementation does nothing.
- Specified by:
exitAttrexp
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterSimpleExpr
public void enterSimpleExpr(ScimFilterParser.SimpleExprContext ctx)
Enter a parse tree produced by thesimpleExpr
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
enterSimpleExpr
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitSimpleExpr
public void exitSimpleExpr(ScimFilterParser.SimpleExprContext ctx)
Exit a parse tree produced by thesimpleExpr
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
exitSimpleExpr
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterAndFilter
public void enterAndFilter(ScimFilterParser.AndFilterContext ctx)
Enter a parse tree produced by theandFilter
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
enterAndFilter
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitAndFilter
public void exitAndFilter(ScimFilterParser.AndFilterContext ctx)
Exit a parse tree produced by theandFilter
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
exitAndFilter
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterNegatedFilter
public void enterNegatedFilter(ScimFilterParser.NegatedFilterContext ctx)
Enter a parse tree produced by thenegatedFilter
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
enterNegatedFilter
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitNegatedFilter
public void exitNegatedFilter(ScimFilterParser.NegatedFilterContext ctx)
Exit a parse tree produced by thenegatedFilter
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
exitNegatedFilter
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterOrFilter
public void enterOrFilter(ScimFilterParser.OrFilterContext ctx)
Enter a parse tree produced by theorFilter
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
enterOrFilter
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
exitOrFilter
public void exitOrFilter(ScimFilterParser.OrFilterContext ctx)
Exit a parse tree produced by theorFilter
labeled alternative inScimFilterParser.filter()
.The default implementation does nothing.
- Specified by:
exitOrFilter
in interfaceScimFilterListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-