public enum HttpContentType extends Enum<HttpContentType>
| Enum Constant and Description |
|---|
APPLICATION_JSON |
MULTIPART_FORM_DATA |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static HttpContentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpContentType APPLICATION_JSON
public static final HttpContentType MULTIPART_FORM_DATA
public static HttpContentType[] values()
for (HttpContentType c : HttpContentType.values()) System.out.println(c);
public static HttpContentType 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 toString()
toString in class Enum<HttpContentType>Copyright © 2019. All rights reserved.