public static enum Attachment.Encoding extends java.lang.Enum<Attachment.Encoding>
Enum Constant and Description |
---|
Gzip
GZIP encoding: the contents are compressed using GZIP compression.
|
Plain
Plain encoding: the contents are not compressed.
|
Modifier and Type | Method and Description |
---|---|
static Attachment.Encoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Attachment.Encoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attachment.Encoding Plain
public static final Attachment.Encoding Gzip
public static Attachment.Encoding[] values()
for (Attachment.Encoding c : Attachment.Encoding.values()) System.out.println(c);
public static Attachment.Encoding valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null