public static enum DecoderConfig.ContentDecoder extends Enum<DecoderConfig.ContentDecoder>
Enum Constant and Description |
---|
DEFLATE |
GZIP
GZIP compression support for both requests and responses.
|
Modifier and Type | Method and Description |
---|---|
static DecoderConfig.ContentDecoder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecoderConfig.ContentDecoder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecoderConfig.ContentDecoder GZIP
public static final DecoderConfig.ContentDecoder DEFLATE
public static DecoderConfig.ContentDecoder[] values()
for (DecoderConfig.ContentDecoder c : DecoderConfig.ContentDecoder.values()) System.out.println(c);
public static DecoderConfig.ContentDecoder 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 © 2010–2016. All rights reserved.