Show / Hide Table of Contents

Interface ICSVVisitor<Result>

This interface defines a complete generic visitor for a parse tree produced by CSVParser.

Namespace: GCore.Antlr.Grammers.Csv
Assembly: Csv.dll
Syntax
public interface ICSVVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name Description
Result

The return type of the visit operation.

Methods

| Improve this Doc View Source

VisitCsvFile(CSVParser.CsvFileContext)

Visit a parse tree produced by csvFile().

Declaration
Result VisitCsvFile(CSVParser.CsvFileContext context)
Parameters
Type Name Description
CSVParser.CsvFileContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitField(CSVParser.FieldContext)

Visit a parse tree produced by field().

Declaration
Result VisitField(CSVParser.FieldContext context)
Parameters
Type Name Description
CSVParser.FieldContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitHdr(CSVParser.HdrContext)

Visit a parse tree produced by hdr().

Declaration
Result VisitHdr(CSVParser.HdrContext context)
Parameters
Type Name Description
CSVParser.HdrContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitRow(CSVParser.RowContext)

Visit a parse tree produced by row().

Declaration
Result VisitRow(CSVParser.RowContext context)
Parameters
Type Name Description
CSVParser.RowContext context

The parse tree.

Returns
Type Description
Result
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX