Enum CaptionDestinationType
- java.lang.Object
-
- java.lang.Enum<CaptionDestinationType>
-
- software.amazon.awssdk.services.mediaconvert.model.CaptionDestinationType
-
- All Implemented Interfaces:
Serializable,Comparable<CaptionDestinationType>
@Generated("software.amazon.awssdk:codegen") public enum CaptionDestinationType extends Enum<CaptionDestinationType>
Specify the format for this set of captions on this output. The default format is embedded without SCTE-20. Note that your choice of video output container constrains your choice of output captions format. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/captions-support-tables.html. If you are using SCTE-20 and you want to create an output that complies with the SCTE-43 spec, choose SCTE-20 plus embedded. To create a non-compliant output where the embedded captions come first, choose Embedded plus SCTE-20.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BURN_INDVB_SUBEMBEDDEDEMBEDDED_PLUS_SCTE20IMSCSCCSCTE20_PLUS_EMBEDDEDSMISRTTELETEXTTTMLUNKNOWN_TO_SDK_VERSIONWEBVTT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CaptionDestinationTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<CaptionDestinationType>knownValues()StringtoString()static CaptionDestinationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CaptionDestinationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BURN_IN
public static final CaptionDestinationType BURN_IN
-
DVB_SUB
public static final CaptionDestinationType DVB_SUB
-
EMBEDDED
public static final CaptionDestinationType EMBEDDED
-
EMBEDDED_PLUS_SCTE20
public static final CaptionDestinationType EMBEDDED_PLUS_SCTE20
-
IMSC
public static final CaptionDestinationType IMSC
-
SCTE20_PLUS_EMBEDDED
public static final CaptionDestinationType SCTE20_PLUS_EMBEDDED
-
SCC
public static final CaptionDestinationType SCC
-
SRT
public static final CaptionDestinationType SRT
-
SMI
public static final CaptionDestinationType SMI
-
TELETEXT
public static final CaptionDestinationType TELETEXT
-
TTML
public static final CaptionDestinationType TTML
-
WEBVTT
public static final CaptionDestinationType WEBVTT
-
UNKNOWN_TO_SDK_VERSION
public static final CaptionDestinationType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CaptionDestinationType[] 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 (CaptionDestinationType c : CaptionDestinationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaptionDestinationType 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<CaptionDestinationType>
-
fromValue
public static CaptionDestinationType 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:
- CaptionDestinationType corresponding to the value
-
knownValues
public static Set<CaptionDestinationType> 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 knownCaptionDestinationTypes
-
-