public enum MediaType extends java.lang.Enum<MediaType> implements org.eclipse.persistence.internal.oxm.MediaType
Enum Constant and Description |
---|
APPLICATION_JSON |
APPLICATION_XML |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMediaType() |
static MediaType |
getMediaType(java.lang.String mediaType) |
boolean |
isApplicationJSON() |
boolean |
isApplicationXML() |
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_XML
public static final MediaType APPLICATION_JSON
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 static MediaType getMediaType(java.lang.String mediaType)
public java.lang.String getMediaType()
public boolean isApplicationJSON()
isApplicationJSON
in interface org.eclipse.persistence.internal.oxm.MediaType
public boolean isApplicationXML()
isApplicationXML
in interface org.eclipse.persistence.internal.oxm.MediaType