Package step.core.ql
Interface OQLVisitor<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:
OQLBaseVisitor,OQLFilterVisitor
public interface OQLVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byOQLParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TvisitAndExpr(OQLParser.AndExprContext ctx)Visit a parse tree produced by theandExprlabeled alternative inOQLParser.expr().TvisitAtomExpr(OQLParser.AtomExprContext ctx)Visit a parse tree produced by theatomExprlabeled alternative inOQLParser.expr().TvisitEqualityExpr(OQLParser.EqualityExprContext ctx)Visit a parse tree produced by theequalityExprlabeled alternative inOQLParser.expr().TvisitNonQuotedStringAtom(OQLParser.NonQuotedStringAtomContext ctx)Visit a parse tree produced by thenonQuotedStringAtomlabeled alternative inOQLParser.atom().TvisitNotExpr(OQLParser.NotExprContext ctx)Visit a parse tree produced by thenotExprlabeled alternative inOQLParser.expr().TvisitOrExpr(OQLParser.OrExprContext ctx)Visit a parse tree produced by theorExprlabeled alternative inOQLParser.expr().TvisitParExpr(OQLParser.ParExprContext ctx)Visit a parse tree produced by theparExprlabeled alternative inOQLParser.atom().TvisitParse(OQLParser.ParseContext ctx)Visit a parse tree produced byOQLParser.parse().TvisitStringAtom(OQLParser.StringAtomContext ctx)Visit a parse tree produced by thestringAtomlabeled alternative inOQLParser.atom().
-
-
-
Method Detail
-
visitParse
T visitParse(OQLParser.ParseContext ctx)
Visit a parse tree produced byOQLParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpr
T visitNotExpr(OQLParser.NotExprContext ctx)
Visit a parse tree produced by thenotExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomExpr
T visitAtomExpr(OQLParser.AtomExprContext ctx)
Visit a parse tree produced by theatomExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrExpr
T visitOrExpr(OQLParser.OrExprContext ctx)
Visit a parse tree produced by theorExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqualityExpr
T visitEqualityExpr(OQLParser.EqualityExprContext ctx)
Visit a parse tree produced by theequalityExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndExpr
T visitAndExpr(OQLParser.AndExprContext ctx)
Visit a parse tree produced by theandExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParExpr
T visitParExpr(OQLParser.ParExprContext ctx)
Visit a parse tree produced by theparExprlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonQuotedStringAtom
T visitNonQuotedStringAtom(OQLParser.NonQuotedStringAtomContext ctx)
Visit a parse tree produced by thenonQuotedStringAtomlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringAtom
T visitStringAtom(OQLParser.StringAtomContext ctx)
Visit a parse tree produced by thestringAtomlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-