Package io.deephaven.parquet.table
Enum Class ParquetInstructions.ParquetFileLayout
java.lang.Object
java.lang.Enum<ParquetInstructions.ParquetFileLayout>
io.deephaven.parquet.table.ParquetInstructions.ParquetFileLayout
- All Implemented Interfaces:
Serializable
,Comparable<ParquetInstructions.ParquetFileLayout>
,java.lang.constant.Constable
- Enclosing class:
- ParquetInstructions
public static enum ParquetInstructions.ParquetFileLayout
extends Enum<ParquetInstructions.ParquetFileLayout>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA single directory of parquet files.A key-value directory partitioning of parquet files.Layout can be used to describe: A directory containing a "_metadata" parquet file and an optional "_common_metadata" parquet file A single parquet "_metadata" file A single parquet "_common_metadata" fileA single parquet file. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SINGLE_FILE
A single parquet file. -
FLAT_PARTITIONED
A single directory of parquet files. -
KV_PARTITIONED
A key-value directory partitioning of parquet files. -
METADATA_PARTITIONED
Layout can be used to describe:- A directory containing a "_metadata" parquet file and an optional "_common_metadata" parquet file
- A single parquet "_metadata" file
- A single parquet "_common_metadata" file
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-