Interface SearchVisitor<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:
SearchBaseVisitor
public interface SearchVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced bySearchParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitInput
T visitInput(SearchParser.InputContext ctx)
Visit a parse tree produced bySearchParser.input().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpSearch
T visitOpSearch(SearchParser.OpSearchContext ctx)
Visit a parse tree produced by theopSearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomSearch
T visitAtomSearch(SearchParser.AtomSearchContext ctx)
Visit a parse tree produced by theatomSearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrioritySearch
T visitPrioritySearch(SearchParser.PrioritySearchContext ctx)
Visit a parse tree produced by theprioritySearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCriteria
T visitCriteria(SearchParser.CriteriaContext ctx)
Visit a parse tree produced bySearchParser.criteria().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKey
T visitKey(SearchParser.KeyContext ctx)
Visit a parse tree produced bySearchParser.key().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
T visitValue(SearchParser.ValueContext ctx)
Visit a parse tree produced bySearchParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOp
T visitOp(SearchParser.OpContext ctx)
Visit a parse tree produced bySearchParser.op().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-