|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BloomFilterDescriptor.BloomFilterType>
org.apache.hadoop.hbase.BloomFilterDescriptor.BloomFilterType
public static enum BloomFilterDescriptor.BloomFilterType
The type of bloom filter
Enum Constant Summary | |
---|---|
BLOOMFILTER
Bloom filter, as defined by Bloom in 1970. |
|
COUNTING_BLOOMFILTER
Counting Bloom filter, as defined by Fan et al. |
|
RETOUCHED_BLOOMFILTER
Retouched Bloom filter, as defined in the CoNEXT 2006 paper. |
Method Summary | |
---|---|
static BloomFilterDescriptor.BloomFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BloomFilterDescriptor.BloomFilterType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BloomFilterDescriptor.BloomFilterType BLOOMFILTER
public static final BloomFilterDescriptor.BloomFilterType COUNTING_BLOOMFILTER
public static final BloomFilterDescriptor.BloomFilterType RETOUCHED_BLOOMFILTER
Method Detail |
---|
public static final BloomFilterDescriptor.BloomFilterType[] values()
for(BloomFilterDescriptor.BloomFilterType c : BloomFilterDescriptor.BloomFilterType.values()) System.out.println(c);
public static BloomFilterDescriptor.BloomFilterType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |