Package net.maswag.falcaun
Interface STLVisitor<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:
STLBaseVisitor,STLVisitorImpl
public interface STLVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
STLParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced bySTLParser.atomic().Visit a parse tree produced bySTLParser.binaryOperator().Visit a parse tree produced bySTLParser.binaryTemporalOperator().Visit a parse tree produced bySTLParser.comparisonOperator().Visit a parse tree produced bySTLParser.expr().Visit a parse tree produced bySTLParser.interval().Visit a parse tree produced bySTLParser.unaryOperator().Visit a parse tree produced bySTLParser.unaryTemporalOperator().Visit a parse tree produced bySTLParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpr
Visit a parse tree produced bySTLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomic
Visit a parse tree produced bySTLParser.atomic().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryOperator
Visit a parse tree produced bySTLParser.unaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryTemporalOperator
Visit a parse tree produced bySTLParser.unaryTemporalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryOperator
Visit a parse tree produced bySTLParser.binaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryTemporalOperator
Visit a parse tree produced bySTLParser.binaryTemporalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
Visit a parse tree produced bySTLParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced bySTLParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterval
Visit a parse tree produced bySTLParser.interval().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-