Enum AudioChannelTag
- java.lang.Object
-
- java.lang.Enum<AudioChannelTag>
-
- software.amazon.awssdk.services.mediaconvert.model.AudioChannelTag
-
- All Implemented Interfaces:
Serializable,Comparable<AudioChannelTag>
@Generated("software.amazon.awssdk:codegen") public enum AudioChannelTag extends Enum<AudioChannelTag>
Specify the QuickTime audio channel layout tags for the audio channels in this audio track. Enter channel layout tags in the same order as your output's audio channel order. For example, if your output audio track has a left and a right channel, enter Left (L) for the first channel and Right (R) for the second. If your output has multiple single-channel audio tracks, enter a single channel layout tag for each track.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AudioChannelTagfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AudioChannelTag>knownValues()StringtoString()static AudioChannelTagvalueOf(String name)Returns the enum constant of this type with the specified name.static AudioChannelTag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
L
public static final AudioChannelTag L
-
R
public static final AudioChannelTag R
-
C
public static final AudioChannelTag C
-
LFE
public static final AudioChannelTag LFE
-
LS
public static final AudioChannelTag LS
-
RS
public static final AudioChannelTag RS
-
LC
public static final AudioChannelTag LC
-
RC
public static final AudioChannelTag RC
-
CS
public static final AudioChannelTag CS
-
LSD
public static final AudioChannelTag LSD
-
RSD
public static final AudioChannelTag RSD
-
TCS
public static final AudioChannelTag TCS
-
VHL
public static final AudioChannelTag VHL
-
VHC
public static final AudioChannelTag VHC
-
VHR
public static final AudioChannelTag VHR
-
TBL
public static final AudioChannelTag TBL
-
TBC
public static final AudioChannelTag TBC
-
TBR
public static final AudioChannelTag TBR
-
RSL
public static final AudioChannelTag RSL
-
RSR
public static final AudioChannelTag RSR
-
LW
public static final AudioChannelTag LW
-
RW
public static final AudioChannelTag RW
-
LFE2
public static final AudioChannelTag LFE2
-
LT
public static final AudioChannelTag LT
-
RT
public static final AudioChannelTag RT
-
HI
public static final AudioChannelTag HI
-
NAR
public static final AudioChannelTag NAR
-
M
public static final AudioChannelTag M
-
UNKNOWN_TO_SDK_VERSION
public static final AudioChannelTag UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AudioChannelTag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AudioChannelTag c : AudioChannelTag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AudioChannelTag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<AudioChannelTag>
-
fromValue
public static AudioChannelTag fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- AudioChannelTag corresponding to the value
-
knownValues
public static Set<AudioChannelTag> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownAudioChannelTags
-
-