public static enum ParquetVersion.type extends Enum<ParquetVersion.type>
Enum Constant and Description |
---|
PARQUET_1_0
Enable only pre-2.2 Parquet format features when writing
This setting is useful for maximum compatibility with legacy readers.
|
PARQUET_2_0
DEPRECATED: Enable Parquet format 2.6 features
This misleadingly named enum value is roughly similar to PARQUET_2_6.
|
PARQUET_2_4
Enable Parquet format 2.4 and earlier features when writing
This enables UINT32 as well as logical types which don't have
a corresponding converted type.
|
PARQUET_2_6
Enable Parquet format 2.6 and earlier features when writing
This enables the NANOS time unit in addition to the PARQUET_2_4
features.
|
PARQUET_2_LATEST
Enable latest Parquet format 2.x features
This value is equal to the greatest 2.x version supported by
this library.
|
Modifier and Type | Field and Description |
---|---|
int |
value |
Modifier and Type | Method and Description |
---|---|
ParquetVersion.type |
intern() |
String |
toString() |
static ParquetVersion.type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParquetVersion.type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParquetVersion.type PARQUET_1_0
public static final ParquetVersion.type PARQUET_2_0
public static final ParquetVersion.type PARQUET_2_4
public static final ParquetVersion.type PARQUET_2_6
public static final ParquetVersion.type PARQUET_2_LATEST
public static ParquetVersion.type[] values()
for (ParquetVersion.type c : ParquetVersion.type.values()) System.out.println(c);
public static ParquetVersion.type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic ParquetVersion.type intern()
public String toString()
toString
in class Enum<ParquetVersion.type>
Copyright © 2022. All rights reserved.