@EnumDescription(value="Filter type used by Bloom filter.") public enum BloomFilterTypeCode extends Enum<BloomFilterTypeCode>
| Enum Constant and Description |
|---|
DYNAMIC_V0 |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static BloomFilterTypeCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BloomFilterTypeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@EnumFieldDescription(value="Bloom filter that is based on the configured size.") public static final BloomFilterTypeCode SIMPLE
@EnumFieldDescription(value="Bloom filter that is auto sized based on number of keys.") public static final BloomFilterTypeCode DYNAMIC_V0
public static BloomFilterTypeCode[] values()
for (BloomFilterTypeCode c : BloomFilterTypeCode.values()) System.out.println(c);
public static BloomFilterTypeCode 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 © 2024 The Apache Software Foundation. All rights reserved.