public enum ParquetValuesType extends Enum<ParquetValuesType>
| Enum Constant and Description |
|---|
DEFINITION_LEVEL |
REPETITION_LEVEL |
VALUES |
| Modifier and Type | Method and Description |
|---|---|
static ParquetValuesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParquetValuesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParquetValuesType REPETITION_LEVEL
public static final ParquetValuesType DEFINITION_LEVEL
public static final ParquetValuesType VALUES
public static ParquetValuesType[] values()
for (ParquetValuesType c : ParquetValuesType.values()) System.out.println(c);
public static ParquetValuesType 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 nullCopyright © 2012-2017. All Rights Reserved.