Enum AppLaunchStatus
- java.lang.Object
-
- java.lang.Enum<AppLaunchStatus>
-
- software.amazon.awssdk.services.sms.model.AppLaunchStatus
-
- All Implemented Interfaces:
Serializable,Comparable<AppLaunchStatus>
@Generated("software.amazon.awssdk:codegen") public enum AppLaunchStatus extends Enum<AppLaunchStatus>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AppLaunchStatusfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AppLaunchStatus>knownValues()StringtoString()static AppLaunchStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static AppLaunchStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READY_FOR_CONFIGURATION
public static final AppLaunchStatus READY_FOR_CONFIGURATION
-
CONFIGURATION_IN_PROGRESS
public static final AppLaunchStatus CONFIGURATION_IN_PROGRESS
-
CONFIGURATION_INVALID
public static final AppLaunchStatus CONFIGURATION_INVALID
-
READY_FOR_LAUNCH
public static final AppLaunchStatus READY_FOR_LAUNCH
-
VALIDATION_IN_PROGRESS
public static final AppLaunchStatus VALIDATION_IN_PROGRESS
-
LAUNCH_PENDING
public static final AppLaunchStatus LAUNCH_PENDING
-
LAUNCH_IN_PROGRESS
public static final AppLaunchStatus LAUNCH_IN_PROGRESS
-
LAUNCHED
public static final AppLaunchStatus LAUNCHED
-
PARTIALLY_LAUNCHED
public static final AppLaunchStatus PARTIALLY_LAUNCHED
-
DELTA_LAUNCH_IN_PROGRESS
public static final AppLaunchStatus DELTA_LAUNCH_IN_PROGRESS
-
DELTA_LAUNCH_FAILED
public static final AppLaunchStatus DELTA_LAUNCH_FAILED
-
LAUNCH_FAILED
public static final AppLaunchStatus LAUNCH_FAILED
-
TERMINATE_IN_PROGRESS
public static final AppLaunchStatus TERMINATE_IN_PROGRESS
-
TERMINATE_FAILED
public static final AppLaunchStatus TERMINATE_FAILED
-
TERMINATED
public static final AppLaunchStatus TERMINATED
-
UNKNOWN_TO_SDK_VERSION
public static final AppLaunchStatus UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AppLaunchStatus[] 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 (AppLaunchStatus c : AppLaunchStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppLaunchStatus 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<AppLaunchStatus>
-
fromValue
public static AppLaunchStatus 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:
- AppLaunchStatus corresponding to the value
-
knownValues
public static Set<AppLaunchStatus> 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 knownAppLaunchStatuss
-
-