@InterfaceAudience.Public @InterfaceStability.Evolving public enum BloomType extends Enum<BloomType>
| Enum Constant and Description |
|---|
NONE
Bloomfilters disabled
|
ROW
Bloom enabled with Table row as Key
|
ROWCOL
Bloom enabled with Table row & column (family+qualifier) as Key
|
| Modifier and Type | Method and Description |
|---|---|
static BloomType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BloomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BloomType NONE
public static final BloomType ROW
public static final BloomType ROWCOL
public static BloomType[] values()
for (BloomType c : BloomType.values()) System.out.println(c);
public static BloomType 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 © 2007–2019 The Apache Software Foundation. All rights reserved.