public enum MediaType extends Enum<MediaType>
| Enum Constant and Description |
|---|
APPLICATION_JSON_UTF8 |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Get value of MediaType.
|
static MediaType |
valueOf(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_UTF8
public static MediaType[] values()
for (MediaType c : MediaType.values()) System.out.println(c);
public static MediaType 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 String getValue()
Copyright © 2014. All Rights Reserved.