Enum InputDeviceConfigurableAudioChannelPairProfile
- java.lang.Object
-
- java.lang.Enum<InputDeviceConfigurableAudioChannelPairProfile>
-
- software.amazon.awssdk.services.medialive.model.InputDeviceConfigurableAudioChannelPairProfile
-
- All Implemented Interfaces:
Serializable,Comparable<InputDeviceConfigurableAudioChannelPairProfile>
@Generated("software.amazon.awssdk:codegen") public enum InputDeviceConfigurableAudioChannelPairProfile extends Enum<InputDeviceConfigurableAudioChannelPairProfile>
Property of InputDeviceConfigurableAudioChannelPairConfig, which configures one audio channel that the device produces.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CBR_AAC_HQ_192000CBR_AAC_HQ_256000CBR_AAC_HQ_384000CBR_AAC_HQ_512000DISABLEDUNKNOWN_TO_SDK_VERSIONVBR_AAC_HE_64000VBR_AAC_HHE_16000VBR_AAC_LC_128000
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InputDeviceConfigurableAudioChannelPairProfilefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<InputDeviceConfigurableAudioChannelPairProfile>knownValues()StringtoString()static InputDeviceConfigurableAudioChannelPairProfilevalueOf(String name)Returns the enum constant of this type with the specified name.static InputDeviceConfigurableAudioChannelPairProfile[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED
public static final InputDeviceConfigurableAudioChannelPairProfile DISABLED
-
VBR_AAC_HHE_16000
public static final InputDeviceConfigurableAudioChannelPairProfile VBR_AAC_HHE_16000
-
VBR_AAC_HE_64000
public static final InputDeviceConfigurableAudioChannelPairProfile VBR_AAC_HE_64000
-
VBR_AAC_LC_128000
public static final InputDeviceConfigurableAudioChannelPairProfile VBR_AAC_LC_128000
-
CBR_AAC_HQ_192000
public static final InputDeviceConfigurableAudioChannelPairProfile CBR_AAC_HQ_192000
-
CBR_AAC_HQ_256000
public static final InputDeviceConfigurableAudioChannelPairProfile CBR_AAC_HQ_256000
-
CBR_AAC_HQ_384000
public static final InputDeviceConfigurableAudioChannelPairProfile CBR_AAC_HQ_384000
-
CBR_AAC_HQ_512000
public static final InputDeviceConfigurableAudioChannelPairProfile CBR_AAC_HQ_512000
-
UNKNOWN_TO_SDK_VERSION
public static final InputDeviceConfigurableAudioChannelPairProfile UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static InputDeviceConfigurableAudioChannelPairProfile[] 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 (InputDeviceConfigurableAudioChannelPairProfile c : InputDeviceConfigurableAudioChannelPairProfile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InputDeviceConfigurableAudioChannelPairProfile 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<InputDeviceConfigurableAudioChannelPairProfile>
-
fromValue
public static InputDeviceConfigurableAudioChannelPairProfile 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:
- InputDeviceConfigurableAudioChannelPairProfile corresponding to the value
-
knownValues
public static Set<InputDeviceConfigurableAudioChannelPairProfile> 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 knownInputDeviceConfigurableAudioChannelPairProfiles
-
-