public static enum HiveColumnHandle.ColumnType extends Enum<HiveColumnHandle.ColumnType>
| Enum Constant and Description |
|---|
AGGREGATED |
PARTITION_KEY |
REGULAR |
SYNTHESIZED |
| Modifier and Type | Method and Description |
|---|---|
static HiveColumnHandle.ColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HiveColumnHandle.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HiveColumnHandle.ColumnType PARTITION_KEY
public static final HiveColumnHandle.ColumnType REGULAR
public static final HiveColumnHandle.ColumnType SYNTHESIZED
public static final HiveColumnHandle.ColumnType AGGREGATED
public static HiveColumnHandle.ColumnType[] values()
for (HiveColumnHandle.ColumnType c : HiveColumnHandle.ColumnType.values()) System.out.println(c);
public static HiveColumnHandle.ColumnType 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–2023. All rights reserved.