public enum ColumnStatisticType extends Enum<ColumnStatisticType>
| Enum Constant and Description |
|---|
MAX_VALUE |
MAX_VALUE_SIZE_IN_BYTES |
MIN_VALUE |
NUMBER_OF_DISTINCT_VALUES |
NUMBER_OF_NON_NULL_VALUES |
NUMBER_OF_TRUE_VALUES |
TOTAL_SIZE_IN_BYTES |
| Modifier and Type | Method and Description |
|---|---|
static ColumnStatisticType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnStatisticType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnStatisticType MIN_VALUE
public static final ColumnStatisticType MAX_VALUE
public static final ColumnStatisticType NUMBER_OF_DISTINCT_VALUES
public static final ColumnStatisticType NUMBER_OF_NON_NULL_VALUES
public static final ColumnStatisticType NUMBER_OF_TRUE_VALUES
public static final ColumnStatisticType MAX_VALUE_SIZE_IN_BYTES
public static final ColumnStatisticType TOTAL_SIZE_IN_BYTES
public static ColumnStatisticType[] values()
for (ColumnStatisticType c : ColumnStatisticType.values()) System.out.println(c);
public static ColumnStatisticType 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–2022. All rights reserved.