public enum MediaType extends Enum<MediaType>
| Enum Constant and Description |
|---|
APPLICATION_JSON |
APPLICATION_OCTET_STREAM |
APPLICATION_X_TAR |
| Modifier and Type | Method and Description |
|---|---|
String |
getMediaType() |
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
public static final MediaType APPLICATION_OCTET_STREAM
public static final MediaType APPLICATION_X_TAR
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 getMediaType()
Copyright © 2025. All rights reserved.