public static enum SendMessageOptions.GzipOption extends Enum<SendMessageOptions.GzipOption>
| Enum Constant and Description |
|---|
DEFAULTD e f a u l t |
GZIP_OFFG z i p o f f |
GZIP_ONG z i p o n |
| Modifier and Type | Method and Description |
|---|---|
static SendMessageOptions.GzipOption | valueOf(String name)Returns the enum constant of this type with the specified name. |
static SendMessageOptions.GzipOption[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final SendMessageOptions.GzipOption DEFAULT
public static final SendMessageOptions.GzipOption GZIP_OFF
public static final SendMessageOptions.GzipOption GZIP_ON
public static SendMessageOptions.GzipOption 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 static SendMessageOptions.GzipOption[] values()
for (SendMessageOptions.GzipOption c : SendMessageOptions.GzipOption.values()) System.out.println(c);