Enum Vc3Class
- java.lang.Object
-
- java.lang.Enum<Vc3Class>
-
- software.amazon.awssdk.services.mediaconvert.model.Vc3Class
-
- All Implemented Interfaces:
Serializable
,Comparable<Vc3Class>
@Generated("software.amazon.awssdk:codegen") public enum Vc3Class extends Enum<Vc3Class>
Specify the VC3 class to choose the quality characteristics for this output. VC3 class, together with the settings Framerate (framerateNumerator and framerateDenominator) and Resolution (height and width), determine your output bitrate. For example, say that your video resolution is 1920x1080 and your framerate is 29.97. Then Class 145 gives you an output with a bitrate of approximately 145 Mbps and Class 220 gives you and output with a bitrate of approximately 220 Mbps. VC3 class also specifies the color bit depth of your output.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASS_145_8_BIT
CLASS_220_10_BIT
CLASS_220_8_BIT
UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Vc3Class
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<Vc3Class>
knownValues()
String
toString()
static Vc3Class
valueOf(String name)
Returns the enum constant of this type with the specified name.static Vc3Class[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static Vc3Class[] 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 (Vc3Class c : Vc3Class.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Vc3Class 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
-
fromValue
public static Vc3Class 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:
- Vc3Class corresponding to the value
-
-