Interface ParserFactory
-
- All Superinterfaces:
Factory
- All Known Implementing Classes:
DefaultParserFactory
@PublicEvolving public interface ParserFactory extends Factory
Factory that createsParser
.The
Factory.factoryIdentifier()
is identified by matching it againstTableConfigOptions.TABLE_SQL_DIALECT
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ParserFactory.Context
Context provided when a parser is created.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Parser
create(ParserFactory.Context context)
Creates a new parser.-
Methods inherited from interface org.apache.flink.table.factories.Factory
factoryIdentifier, optionalOptions, requiredOptions
-
-
-
-
Method Detail
-
create
Parser create(ParserFactory.Context context)
Creates a new parser.
-
-