| Enum Constant and Description |
|---|
APPLICATION_JSON |
APPLICATION_OCTET_STREAM |
APPLICATION_X_GZIP |
MULTIPART_FORM_DATA |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equalsWith(java.lang.String string) |
java.lang.String |
getValue() |
static MediaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaType APPLICATION_JSON
public static final MediaType MULTIPART_FORM_DATA
public static final MediaType APPLICATION_X_GZIP
public static final MediaType APPLICATION_OCTET_STREAM
public static MediaType[] values()
for (MediaType c : MediaType.values()) System.out.println(c);
public static MediaType 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 nullpublic java.lang.String getValue()
public boolean equalsWith(java.lang.String string)