Enum TargetSamplingRate
- java.lang.Object
-
- java.lang.Enum<TargetSamplingRate>
-
- software.amazon.awssdk.services.lookoutequipment.model.TargetSamplingRate
-
- All Implemented Interfaces:
Serializable,Comparable<TargetSamplingRate>
@Generated("software.amazon.awssdk:codegen") public enum TargetSamplingRate extends Enum<TargetSamplingRate>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TargetSamplingRatefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TargetSamplingRate>knownValues()StringtoString()static TargetSamplingRatevalueOf(String name)Returns the enum constant of this type with the specified name.static TargetSamplingRate[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PT1_S
public static final TargetSamplingRate PT1_S
-
PT5_S
public static final TargetSamplingRate PT5_S
-
PT10_S
public static final TargetSamplingRate PT10_S
-
PT15_S
public static final TargetSamplingRate PT15_S
-
PT30_S
public static final TargetSamplingRate PT30_S
-
PT1_M
public static final TargetSamplingRate PT1_M
-
PT5_M
public static final TargetSamplingRate PT5_M
-
PT10_M
public static final TargetSamplingRate PT10_M
-
PT15_M
public static final TargetSamplingRate PT15_M
-
PT30_M
public static final TargetSamplingRate PT30_M
-
PT1_H
public static final TargetSamplingRate PT1_H
-
UNKNOWN_TO_SDK_VERSION
public static final TargetSamplingRate UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TargetSamplingRate[] 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 (TargetSamplingRate c : TargetSamplingRate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TargetSamplingRate 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<TargetSamplingRate>
-
fromValue
public static TargetSamplingRate 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:
- TargetSamplingRate corresponding to the value
-
knownValues
public static Set<TargetSamplingRate> 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 knownTargetSamplingRates
-
-