Enum BandwidthReductionFilterStrength
- java.lang.Object
-
- java.lang.Enum<BandwidthReductionFilterStrength>
-
- software.amazon.awssdk.services.mediaconvert.model.BandwidthReductionFilterStrength
-
- All Implemented Interfaces:
Serializable,Comparable<BandwidthReductionFilterStrength>
@Generated("software.amazon.awssdk:codegen") public enum BandwidthReductionFilterStrength extends Enum<BandwidthReductionFilterStrength>
Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto to reduce the bandwidth of your output with little to no perceptual decrease in video quality. For high quality and high bitrate outputs, choose Low. For the most bandwidth reduction, choose High. We recommend that you choose High for low bitrate outputs. Note that High may incur a slight increase in the softness of your output.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BandwidthReductionFilterStrengthfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<BandwidthReductionFilterStrength>knownValues()StringtoString()static BandwidthReductionFilterStrengthvalueOf(String name)Returns the enum constant of this type with the specified name.static BandwidthReductionFilterStrength[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final BandwidthReductionFilterStrength LOW
-
MEDIUM
public static final BandwidthReductionFilterStrength MEDIUM
-
HIGH
public static final BandwidthReductionFilterStrength HIGH
-
AUTO
public static final BandwidthReductionFilterStrength AUTO
-
OFF
public static final BandwidthReductionFilterStrength OFF
-
UNKNOWN_TO_SDK_VERSION
public static final BandwidthReductionFilterStrength UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static BandwidthReductionFilterStrength[] 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 (BandwidthReductionFilterStrength c : BandwidthReductionFilterStrength.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BandwidthReductionFilterStrength 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<BandwidthReductionFilterStrength>
-
fromValue
public static BandwidthReductionFilterStrength 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:
- BandwidthReductionFilterStrength corresponding to the value
-
knownValues
public static Set<BandwidthReductionFilterStrength> 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 knownBandwidthReductionFilterStrengths
-
-