Interface ParquetConverter
-
- All Known Implementing Classes:
ParquetRootConverter
public interface ParquetConverterCommon lifecycle interface for Parquet converters.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default org.apache.parquet.io.api.ConverterasConverter()Return this converter as Parquet API converter.default voidparentEnd()Notify the converter that the parent type ends.default voidparentStart()Notify the converter that the parent type starts.
-
-
-
Method Detail
-
parentStart
default void parentStart()
Notify the converter that the parent type starts.
-
parentEnd
default void parentEnd()
Notify the converter that the parent type ends.
-
asConverter
default org.apache.parquet.io.api.Converter asConverter()
Return this converter as Parquet API converter.- Returns:
- Parquet converter
-
-