Enum LifecycleState
- java.lang.Object
-
- java.lang.Enum<LifecycleState>
-
- software.amazon.awssdk.services.autoscaling.model.LifecycleState
-
- All Implemented Interfaces:
Serializable,Comparable<LifecycleState>
@Generated("software.amazon.awssdk:codegen") public enum LifecycleState extends Enum<LifecycleState>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LifecycleStatefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<LifecycleState>knownValues()StringtoString()static LifecycleStatevalueOf(String name)Returns the enum constant of this type with the specified name.static LifecycleState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDING
public static final LifecycleState PENDING
-
PENDING_WAIT
public static final LifecycleState PENDING_WAIT
-
PENDING_PROCEED
public static final LifecycleState PENDING_PROCEED
-
QUARANTINED
public static final LifecycleState QUARANTINED
-
IN_SERVICE
public static final LifecycleState IN_SERVICE
-
TERMINATING
public static final LifecycleState TERMINATING
-
TERMINATING_WAIT
public static final LifecycleState TERMINATING_WAIT
-
TERMINATING_PROCEED
public static final LifecycleState TERMINATING_PROCEED
-
TERMINATED
public static final LifecycleState TERMINATED
-
DETACHING
public static final LifecycleState DETACHING
-
DETACHED
public static final LifecycleState DETACHED
-
ENTERING_STANDBY
public static final LifecycleState ENTERING_STANDBY
-
STANDBY
public static final LifecycleState STANDBY
-
WARMED_PENDING
public static final LifecycleState WARMED_PENDING
-
WARMED_PENDING_WAIT
public static final LifecycleState WARMED_PENDING_WAIT
-
WARMED_PENDING_PROCEED
public static final LifecycleState WARMED_PENDING_PROCEED
-
WARMED_TERMINATING
public static final LifecycleState WARMED_TERMINATING
-
WARMED_TERMINATING_WAIT
public static final LifecycleState WARMED_TERMINATING_WAIT
-
WARMED_TERMINATING_PROCEED
public static final LifecycleState WARMED_TERMINATING_PROCEED
-
WARMED_TERMINATED
public static final LifecycleState WARMED_TERMINATED
-
WARMED_STOPPED
public static final LifecycleState WARMED_STOPPED
-
WARMED_RUNNING
public static final LifecycleState WARMED_RUNNING
-
WARMED_HIBERNATED
public static final LifecycleState WARMED_HIBERNATED
-
UNKNOWN_TO_SDK_VERSION
public static final LifecycleState UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static LifecycleState[] 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 (LifecycleState c : LifecycleState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LifecycleState 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<LifecycleState>
-
fromValue
public static LifecycleState 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:
- LifecycleState corresponding to the value
-
knownValues
public static Set<LifecycleState> 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 knownLifecycleStates
-
-