public enum MediaType extends Enum<MediaType> implements HasName
| Enum Constant and Description |
|---|
APPLICATION
Application file type.
|
BINARY_DATA |
IMAGE
Image file type.
|
UNKNOWN
Unknown file type.
|
VIDEO
Video file type.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaType |
findOrDefault(String name) |
int |
getCode() |
String |
getName() |
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 UNKNOWN
public static final MediaType VIDEO
public static final MediaType IMAGE
public static final MediaType APPLICATION
public static final MediaType BINARY_DATA
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 int getCode()
Copyright © 2023. All rights reserved.