public static enum HyperLogLog.EncodingType extends Enum<HyperLogLog.EncodingType>
| Modifier and Type | Method and Description |
|---|---|
static HyperLogLog.EncodingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HyperLogLog.EncodingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HyperLogLog.EncodingType SPARSE
public static final HyperLogLog.EncodingType DENSE
public static HyperLogLog.EncodingType[] values()
for (HyperLogLog.EncodingType c : HyperLogLog.EncodingType.values()) System.out.println(c);
public static HyperLogLog.EncodingType 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 © 2017. All rights reserved.