public enum MediaType extends Enum<MediaType>
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static MediaType |
getInstance(String name) |
int |
getMask() |
static MediaType |
getMediaType(int code) |
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 AUDIO
public static final MediaType VIDEO
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 static MediaType getMediaType(int code)
public int getCode()
public String getName()
public int getMask()
Copyright © 2017 TeleStax, Inc.. All Rights Reserved.