public enum CountMinSketchAggType extends Enum<CountMinSketchAggType>
Modifier and Type | Method and Description |
---|---|
static CountMinSketchAggType |
fromNameMayMatch(String name) |
String |
getFuncName() |
static CountMinSketchAggType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountMinSketchAggType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountMinSketchAggType STATE
public static final CountMinSketchAggType ADD
public static final CountMinSketchAggType FREQ
public static final CountMinSketchAggType TOPK
public static CountMinSketchAggType[] values()
for (CountMinSketchAggType c : CountMinSketchAggType.values()) System.out.println(c);
public static CountMinSketchAggType 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 nullpublic String getFuncName()
public static CountMinSketchAggType fromNameMayMatch(String name)