@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AudioCodec extends Enum<AudioCodec>
Enum Constant and Description |
---|
AAC |
AC3 |
AIFF |
EAC3 |
EAC3_ATMOS |
FLAC |
MP2 |
MP3 |
OPUS |
PASSTHROUGH |
VORBIS |
WAV |
Modifier and Type | Method and Description |
---|---|
static AudioCodec |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AudioCodec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioCodec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioCodec AAC
public static final AudioCodec MP2
public static final AudioCodec MP3
public static final AudioCodec WAV
public static final AudioCodec AIFF
public static final AudioCodec AC3
public static final AudioCodec EAC3
public static final AudioCodec EAC3_ATMOS
public static final AudioCodec VORBIS
public static final AudioCodec OPUS
public static final AudioCodec PASSTHROUGH
public static final AudioCodec FLAC
public static AudioCodec[] values()
for (AudioCodec c : AudioCodec.values()) System.out.println(c);
public static AudioCodec 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 toString()
toString
in class Enum<AudioCodec>
public static AudioCodec fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.