Enum H264CodecLevel
- java.lang.Object
-
- java.lang.Enum<H264CodecLevel>
-
- software.amazon.awssdk.services.mediaconvert.model.H264CodecLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<H264CodecLevel>
@Generated("software.amazon.awssdk:codegen") public enum H264CodecLevel extends Enum<H264CodecLevel>
Specify an H.264 level that is consistent with your output video settings. If you aren't sure what level to specify, choose Auto.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static H264CodecLevel
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<H264CodecLevel>
knownValues()
String
toString()
static H264CodecLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static H264CodecLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO
public static final H264CodecLevel AUTO
-
LEVEL_1
public static final H264CodecLevel LEVEL_1
-
LEVEL_1_1
public static final H264CodecLevel LEVEL_1_1
-
LEVEL_1_2
public static final H264CodecLevel LEVEL_1_2
-
LEVEL_1_3
public static final H264CodecLevel LEVEL_1_3
-
LEVEL_2
public static final H264CodecLevel LEVEL_2
-
LEVEL_2_1
public static final H264CodecLevel LEVEL_2_1
-
LEVEL_2_2
public static final H264CodecLevel LEVEL_2_2
-
LEVEL_3
public static final H264CodecLevel LEVEL_3
-
LEVEL_3_1
public static final H264CodecLevel LEVEL_3_1
-
LEVEL_3_2
public static final H264CodecLevel LEVEL_3_2
-
LEVEL_4
public static final H264CodecLevel LEVEL_4
-
LEVEL_4_1
public static final H264CodecLevel LEVEL_4_1
-
LEVEL_4_2
public static final H264CodecLevel LEVEL_4_2
-
LEVEL_5
public static final H264CodecLevel LEVEL_5
-
LEVEL_5_1
public static final H264CodecLevel LEVEL_5_1
-
LEVEL_5_2
public static final H264CodecLevel LEVEL_5_2
-
UNKNOWN_TO_SDK_VERSION
public static final H264CodecLevel UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static H264CodecLevel[] 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 (H264CodecLevel c : H264CodecLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static H264CodecLevel 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:
toString
in classEnum<H264CodecLevel>
-
fromValue
public static H264CodecLevel 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:
- H264CodecLevel corresponding to the value
-
knownValues
public static Set<H264CodecLevel> knownValues()
Use this in place ofvalues()
to return aSet
of all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION
.- Returns:
- a
Set
of knownH264CodecLevel
s
-
-