Enum ChoiceStatus
- java.lang.Object
-
- java.lang.Enum<ChoiceStatus>
-
- software.amazon.awssdk.services.wellarchitected.model.ChoiceStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ChoiceStatus>
@Generated("software.amazon.awssdk:codegen") public enum ChoiceStatus extends Enum<ChoiceStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_APPLICABLESELECTEDUNKNOWN_TO_SDK_VERSIONUNSELECTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChoiceStatusfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ChoiceStatus>knownValues()StringtoString()static ChoiceStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ChoiceStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELECTED
public static final ChoiceStatus SELECTED
-
NOT_APPLICABLE
public static final ChoiceStatus NOT_APPLICABLE
-
UNSELECTED
public static final ChoiceStatus UNSELECTED
-
UNKNOWN_TO_SDK_VERSION
public static final ChoiceStatus UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ChoiceStatus[] 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 (ChoiceStatus c : ChoiceStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChoiceStatus 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<ChoiceStatus>
-
fromValue
public static ChoiceStatus 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:
- ChoiceStatus corresponding to the value
-
knownValues
public static Set<ChoiceStatus> 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 knownChoiceStatuss
-
-