Enum TemporalFilterStrength
- java.lang.Object
-
- java.lang.Enum<TemporalFilterStrength>
-
- software.amazon.awssdk.services.medialive.model.TemporalFilterStrength
-
- All Implemented Interfaces:
Serializable,Comparable<TemporalFilterStrength>
@Generated("software.amazon.awssdk:codegen") public enum TemporalFilterStrength extends Enum<TemporalFilterStrength>
Temporal Filter Strength
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOSTRENGTH_1STRENGTH_10STRENGTH_11STRENGTH_12STRENGTH_13STRENGTH_14STRENGTH_15STRENGTH_16STRENGTH_2STRENGTH_3STRENGTH_4STRENGTH_5STRENGTH_6STRENGTH_7STRENGTH_8STRENGTH_9UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TemporalFilterStrengthfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TemporalFilterStrength>knownValues()StringtoString()static TemporalFilterStrengthvalueOf(String name)Returns the enum constant of this type with the specified name.static TemporalFilterStrength[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO
public static final TemporalFilterStrength AUTO
-
STRENGTH_1
public static final TemporalFilterStrength STRENGTH_1
-
STRENGTH_2
public static final TemporalFilterStrength STRENGTH_2
-
STRENGTH_3
public static final TemporalFilterStrength STRENGTH_3
-
STRENGTH_4
public static final TemporalFilterStrength STRENGTH_4
-
STRENGTH_5
public static final TemporalFilterStrength STRENGTH_5
-
STRENGTH_6
public static final TemporalFilterStrength STRENGTH_6
-
STRENGTH_7
public static final TemporalFilterStrength STRENGTH_7
-
STRENGTH_8
public static final TemporalFilterStrength STRENGTH_8
-
STRENGTH_9
public static final TemporalFilterStrength STRENGTH_9
-
STRENGTH_10
public static final TemporalFilterStrength STRENGTH_10
-
STRENGTH_11
public static final TemporalFilterStrength STRENGTH_11
-
STRENGTH_12
public static final TemporalFilterStrength STRENGTH_12
-
STRENGTH_13
public static final TemporalFilterStrength STRENGTH_13
-
STRENGTH_14
public static final TemporalFilterStrength STRENGTH_14
-
STRENGTH_15
public static final TemporalFilterStrength STRENGTH_15
-
STRENGTH_16
public static final TemporalFilterStrength STRENGTH_16
-
UNKNOWN_TO_SDK_VERSION
public static final TemporalFilterStrength UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TemporalFilterStrength[] 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 (TemporalFilterStrength c : TemporalFilterStrength.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemporalFilterStrength 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<TemporalFilterStrength>
-
fromValue
public static TemporalFilterStrength 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:
- TemporalFilterStrength corresponding to the value
-
knownValues
public static Set<TemporalFilterStrength> 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 knownTemporalFilterStrengths
-
-