public enum ContentType extends java.lang.Enum<ContentType> implements EnumConverter<ContentType>
Enum Constant and Description |
---|
APPLICATION_JSON |
APPLICATION_X_WWW_FORM_URLENCODED |
MULTIPART_FORM_DATA |
Modifier and Type | Method and Description |
---|---|
static ContentType |
from(java.lang.String value) |
java.lang.Object |
to(ContentType v) |
static ContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentType MULTIPART_FORM_DATA
public static final ContentType APPLICATION_JSON
public static final ContentType APPLICATION_X_WWW_FORM_URLENCODED
public static ContentType[] values()
for (ContentType c : ContentType.values()) System.out.println(c);
public static ContentType 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 static ContentType from(java.lang.String value)
public java.lang.Object to(ContentType v)
to
in interface EnumConverter<ContentType>