Enum InputRotate
- java.lang.Object
-
- java.lang.Enum<InputRotate>
-
- software.amazon.awssdk.services.mediaconvert.model.InputRotate
-
- All Implemented Interfaces:
Serializable
,Comparable<InputRotate>
@Generated("software.amazon.awssdk:codegen") public enum InputRotate extends Enum<InputRotate>
Use Rotate to specify how the service rotates your video. You can choose automatic rotation or specify a rotation. You can specify a clockwise rotation of 0, 90, 180, or 270 degrees. If your input video container is .mov or .mp4 and your input has rotation metadata, you can choose Automatic to have the service rotate your video according to the rotation specified in the metadata. The rotation must be within one degree of 90, 180, or 270 degrees. If the rotation metadata specifies any other rotation, the service will default to no rotation. By default, the service does no rotation, even if your input video has rotation metadata. The service doesn't pass through rotation metadata.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTO
DEGREE_0
DEGREES_180
DEGREES_270
DEGREES_90
UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InputRotate
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<InputRotate>
knownValues()
String
toString()
static InputRotate
valueOf(String name)
Returns the enum constant of this type with the specified name.static InputRotate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEGREE_0
public static final InputRotate DEGREE_0
-
DEGREES_90
public static final InputRotate DEGREES_90
-
DEGREES_180
public static final InputRotate DEGREES_180
-
DEGREES_270
public static final InputRotate DEGREES_270
-
AUTO
public static final InputRotate AUTO
-
UNKNOWN_TO_SDK_VERSION
public static final InputRotate UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static InputRotate[] 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 (InputRotate c : InputRotate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InputRotate 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<InputRotate>
-
fromValue
public static InputRotate 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:
- InputRotate corresponding to the value
-
knownValues
public static Set<InputRotate> 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 knownInputRotate
s
-
-