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