Package com.hazelcast.jet.pipeline.file
Class ParquetFileFormat<T>
- java.lang.Object
-
- com.hazelcast.jet.pipeline.file.ParquetFileFormat<T>
-
- Type Parameters:
T
- type of items a source using this file format will emit
- All Implemented Interfaces:
FileFormat<T>
,java.io.Serializable
public class ParquetFileFormat<T> extends java.lang.Object implements FileFormat<T>
FileFormat
for Parquet files. SeeFileFormat.parquet()
for more details.- Since:
- Jet 4.4
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
FORMAT_PARQUET
Format ID for Parquet.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
format()
Returns the name of the file format.int
hashCode()
-
-
-
Field Detail
-
FORMAT_PARQUET
public static final java.lang.String FORMAT_PARQUET
Format ID for Parquet.- See Also:
- Constant Field Values
-
-
Method Detail
-
format
@Nonnull public java.lang.String format()
Description copied from interface:FileFormat
Returns the name of the file format. The convention is to use the well-known filename suffix or, if there is none, a short-form name of the format.- Specified by:
format
in interfaceFileFormat<T>
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-