public static enum CountMinSketch.Version extends Enum<CountMinSketch.Version>
Enum Constant and Description |
---|
V1
CountMinSketch binary format version 1. |
Modifier and Type | Method and Description |
---|---|
static CountMinSketch.Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountMinSketch.Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountMinSketch.Version V1
CountMinSketch
binary format version 1. All values written in big-endian order:
depth - 1
(width * 64 bit)public static CountMinSketch.Version[] values()
for (CountMinSketch.Version c : CountMinSketch.Version.values()) System.out.println(c);
public static CountMinSketch.Version 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 null