public enum ParquetErrorCode extends Enum<ParquetErrorCode> implements ErrorCodeSupplier
| Enum Constant and Description |
|---|
PARQUET_INCORRECT_DECODING |
PARQUET_IO_READ_ERROR |
PARQUET_UNSUPPORTED_COLUMN_TYPE |
PARQUET_UNSUPPORTED_ENCODING |
| Modifier and Type | Method and Description |
|---|---|
ErrorCode |
toErrorCode() |
static ParquetErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParquetErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParquetErrorCode PARQUET_UNSUPPORTED_COLUMN_TYPE
public static final ParquetErrorCode PARQUET_UNSUPPORTED_ENCODING
public static final ParquetErrorCode PARQUET_IO_READ_ERROR
public static final ParquetErrorCode PARQUET_INCORRECT_DECODING
public static ParquetErrorCode[] values()
for (ParquetErrorCode c : ParquetErrorCode.values()) System.out.println(c);
public static ParquetErrorCode 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 ErrorCode toErrorCode()
toErrorCode in interface ErrorCodeSupplierCopyright © 2012–2024. All rights reserved.