public static enum BloomFilter.HashMethod extends java.lang.Enum<BloomFilter.HashMethod>
Enum Constant and Description |
---|
Adler32 |
CarterWegman |
CRC32 |
Cryptographic |
Custom |
Magnus |
Murmur |
RNG |
SecureRNG |
SimpeLCG |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static BloomFilter.HashMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BloomFilter.HashMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BloomFilter.HashMethod RNG
public static final BloomFilter.HashMethod Cryptographic
public static final BloomFilter.HashMethod CarterWegman
public static final BloomFilter.HashMethod SecureRNG
public static final BloomFilter.HashMethod CRC32
public static final BloomFilter.HashMethod Adler32
public static final BloomFilter.HashMethod Murmur
public static final BloomFilter.HashMethod SimpeLCG
public static final BloomFilter.HashMethod Magnus
public static final BloomFilter.HashMethod Custom
public static BloomFilter.HashMethod[] values()
for (BloomFilter.HashMethod c : BloomFilter.HashMethod.values()) System.out.println(c);
public static BloomFilter.HashMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<BloomFilter.HashMethod>