public enum ThriftCompressionType extends Enum<ThriftCompressionType>
Enum Constant and Description |
---|
NONE
No compression defined
|
ZLIB
Standard Java utility zlib implementation
|
Modifier and Type | Method and Description |
---|---|
static ThriftCompressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThriftCompressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThriftCompressionType NONE
public static final ThriftCompressionType ZLIB
public static ThriftCompressionType[] values()
for (ThriftCompressionType c : ThriftCompressionType.values()) System.out.println(c);
public static ThriftCompressionType 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 nullApache Camel