public enum MediaType extends Enum<MediaType>
| Enum Constant and Description |
|---|
AUDIO |
BINARY |
IMAGE |
RECORD |
TEXT |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
int |
intValue() |
static MediaType |
valueOf(int intValue) |
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 BINARY
public static final MediaType AUDIO
public static final MediaType VIDEO
public static final MediaType IMAGE
public static final MediaType TEXT
public static final MediaType RECORD
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 intValue()
public static MediaType valueOf(int intValue)
intValue - Copyright © 2021. All rights reserved.