public enum MediaType extends Enum<MediaType>
| Modifier and Type | Method and Description |
|---|---|
static com.google.common.collect.ImmutableSet<MediaType> |
all() |
static com.google.common.base.Optional<MediaType> |
fromKey(String key) |
String |
toKey() |
String |
toString() |
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 String toKey()
public static final com.google.common.collect.ImmutableSet<MediaType> all()
Copyright © 2014. All rights reserved.