public static enum BloomFilter.Compression extends Enum<BloomFilter.Compression>
| Enum Constant and Description |
|---|
UNCOMPRESSED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static BloomFilter.Compression |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BloomFilter.Compression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BloomFilter.Compression UNCOMPRESSED
public static BloomFilter.Compression[] values()
for (BloomFilter.Compression c : BloomFilter.Compression.values()) System.out.println(c);
public static BloomFilter.Compression 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 nullpublic String toString()
toString in class Enum<BloomFilter.Compression>Copyright © 2024 The Apache Software Foundation. All rights reserved.