public enum SupportedMediaType extends Enum<SupportedMediaType>
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.MediaType |
getMediaType() |
static SupportedMediaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportedMediaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedMediaType JSON
public static final SupportedMediaType XML
public static SupportedMediaType[] values()
for (SupportedMediaType c : SupportedMediaType.values()) System.out.println(c);
public static SupportedMediaType 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 javax.ws.rs.core.MediaType getMediaType()
Copyright © 2019. All rights reserved.