Enum DvbddsHandling
- java.lang.Object
-
- java.lang.Enum<DvbddsHandling>
-
- software.amazon.awssdk.services.mediaconvert.model.DvbddsHandling
-
- All Implemented Interfaces:
Serializable,Comparable<DvbddsHandling>
@Generated("software.amazon.awssdk:codegen") public enum DvbddsHandling extends Enum<DvbddsHandling>
Specify how MediaConvert handles the display definition segment (DDS). To exclude the DDS from this set of captions: Keep the default, None. To include the DDS: Choose Specified. When you do, also specify the offset coordinates of the display window with DDS x-coordinate and DDS y-coordinate. To include the DDS, but not include display window data: Choose No display window. When you do, you can write position metadata to the page composition segment (PCS) with DDS x-coordinate and DDS y-coordinate. For video resolutions with a height of 576 pixels or less, MediaConvert doesn't include the DDS, regardless of the value you choose for DDS handling. All burn-in and DVB-Sub font settings must match.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_DISPLAY_WINDOWNONESPECIFIEDUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DvbddsHandlingfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<DvbddsHandling>knownValues()StringtoString()static DvbddsHandlingvalueOf(String name)Returns the enum constant of this type with the specified name.static DvbddsHandling[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DvbddsHandling NONE
-
SPECIFIED
public static final DvbddsHandling SPECIFIED
-
NO_DISPLAY_WINDOW
public static final DvbddsHandling NO_DISPLAY_WINDOW
-
UNKNOWN_TO_SDK_VERSION
public static final DvbddsHandling UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DvbddsHandling[] 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 (DvbddsHandling c : DvbddsHandling.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DvbddsHandling 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<DvbddsHandling>
-
fromValue
public static DvbddsHandling 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:
- DvbddsHandling corresponding to the value
-
knownValues
public static Set<DvbddsHandling> 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 knownDvbddsHandlings
-
-