Interface InfluxLineProtocolVisitor<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:
InfluxLineProtocolBaseVisitor
public interface InfluxLineProtocolVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byInfluxLineProtocolParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitLines
T visitLines(InfluxLineProtocolParser.LinesContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.lines().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLine
T visitLine(InfluxLineProtocolParser.LineContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.line().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimestamp
T visitTimestamp(InfluxLineProtocolParser.TimestampContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.timestamp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField_set
T visitField_set(InfluxLineProtocolParser.Field_setContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.field_set().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTag_set
T visitTag_set(InfluxLineProtocolParser.Tag_setContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.tag_set().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTag_pair
T visitTag_pair(InfluxLineProtocolParser.Tag_pairContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.tag_pair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField_pair
T visitField_pair(InfluxLineProtocolParser.Field_pairContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.field_pair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(InfluxLineProtocolParser.IdentifierContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField_value
T visitField_value(InfluxLineProtocolParser.Field_valueContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.field_value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEol
T visitEol(InfluxLineProtocolParser.EolContext ctx)
Visit a parse tree produced byInfluxLineProtocolParser.eol().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-