public enum HistogramType extends Enum<HistogramType>
| Enum Constant and Description |
|---|
DOUBLE_TRUNCATE |
TDIGEST |
| Modifier and Type | Field and Description |
|---|---|
static org.apache.avro.Schema |
SCHEMA$ |
| Modifier and Type | Method and Description |
|---|---|
static HistogramType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistogramType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistogramType TDIGEST
public static final HistogramType DOUBLE_TRUNCATE
public static HistogramType[] values()
for (HistogramType c : HistogramType.values()) System.out.println(c);
public static HistogramType 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 © 2016. All rights reserved.