public static enum ProtocolOptions.Compression extends Enum<ProtocolOptions.Compression>
| Enum Constant and Description | 
|---|
NONE
No compression 
 | 
SNAPPY
Snappy compression 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static ProtocolOptions.Compression | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ProtocolOptions.Compression[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProtocolOptions.Compression NONE
public static final ProtocolOptions.Compression SNAPPY
public static ProtocolOptions.Compression[] values()
for (ProtocolOptions.Compression c : ProtocolOptions.Compression.values()) System.out.println(c);
public static ProtocolOptions.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<ProtocolOptions.Compression>Copyright © 2014. All Rights Reserved.