Enum BurninSubtitleFallbackFont
- java.lang.Object
-
- java.lang.Enum<BurninSubtitleFallbackFont>
-
- software.amazon.awssdk.services.mediaconvert.model.BurninSubtitleFallbackFont
-
- All Implemented Interfaces:
Serializable
,Comparable<BurninSubtitleFallbackFont>
@Generated("software.amazon.awssdk:codegen") public enum BurninSubtitleFallbackFont extends Enum<BurninSubtitleFallbackFont>
Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you set Fallback font to best match, or leave blank, MediaConvert uses a supported font that most closely matches the font that your input captions specify. When there are multiple unsupported fonts in your input captions, MediaConvert matches each font with the supported font that matches best. When you explicitly choose a replacement font, MediaConvert uses that font to replace all unsupported fonts from your input.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEST_MATCH
MONOSPACED_SANSSERIF
MONOSPACED_SERIF
PROPORTIONAL_SANSSERIF
PROPORTIONAL_SERIF
UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BurninSubtitleFallbackFont
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<BurninSubtitleFallbackFont>
knownValues()
String
toString()
static BurninSubtitleFallbackFont
valueOf(String name)
Returns the enum constant of this type with the specified name.static BurninSubtitleFallbackFont[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEST_MATCH
public static final BurninSubtitleFallbackFont BEST_MATCH
-
MONOSPACED_SANSSERIF
public static final BurninSubtitleFallbackFont MONOSPACED_SANSSERIF
-
MONOSPACED_SERIF
public static final BurninSubtitleFallbackFont MONOSPACED_SERIF
-
PROPORTIONAL_SANSSERIF
public static final BurninSubtitleFallbackFont PROPORTIONAL_SANSSERIF
-
PROPORTIONAL_SERIF
public static final BurninSubtitleFallbackFont PROPORTIONAL_SERIF
-
UNKNOWN_TO_SDK_VERSION
public static final BurninSubtitleFallbackFont UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static BurninSubtitleFallbackFont[] 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 (BurninSubtitleFallbackFont c : BurninSubtitleFallbackFont.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BurninSubtitleFallbackFont 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<BurninSubtitleFallbackFont>
-
fromValue
public static BurninSubtitleFallbackFont 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:
- BurninSubtitleFallbackFont corresponding to the value
-
knownValues
public static Set<BurninSubtitleFallbackFont> 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 knownBurninSubtitleFallbackFont
s
-
-