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