public enum MediaProfileSpecType extends Enum<MediaProfileSpecType>
| Enum Constant and Description |
|---|
MP4 |
MP4_AUDIO_ONLY |
MP4_VIDEO_ONLY |
WEBM |
WEBM_AUDIO_ONLY |
WEBM_VIDEO_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static MediaProfileSpecType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaProfileSpecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaProfileSpecType WEBM
public static final MediaProfileSpecType MP4
public static final MediaProfileSpecType WEBM_VIDEO_ONLY
public static final MediaProfileSpecType WEBM_AUDIO_ONLY
public static final MediaProfileSpecType MP4_VIDEO_ONLY
public static final MediaProfileSpecType MP4_AUDIO_ONLY
public static MediaProfileSpecType[] values()
for (MediaProfileSpecType c : MediaProfileSpecType.values()) System.out.println(c);
public static MediaProfileSpecType 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 nullCopyright © 2015 Kurento. All rights reserved.