Enum AppReplicationStatus
- java.lang.Object
-
- java.lang.Enum<AppReplicationStatus>
-
- software.amazon.awssdk.services.sms.model.AppReplicationStatus
-
- All Implemented Interfaces:
Serializable,Comparable<AppReplicationStatus>
@Generated("software.amazon.awssdk:codegen") public enum AppReplicationStatus extends Enum<AppReplicationStatus>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AppReplicationStatusfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AppReplicationStatus>knownValues()StringtoString()static AppReplicationStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static AppReplicationStatus[]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 AppReplicationStatus READY_FOR_CONFIGURATION
-
CONFIGURATION_IN_PROGRESS
public static final AppReplicationStatus CONFIGURATION_IN_PROGRESS
-
CONFIGURATION_INVALID
public static final AppReplicationStatus CONFIGURATION_INVALID
-
READY_FOR_REPLICATION
public static final AppReplicationStatus READY_FOR_REPLICATION
-
VALIDATION_IN_PROGRESS
public static final AppReplicationStatus VALIDATION_IN_PROGRESS
-
REPLICATION_PENDING
public static final AppReplicationStatus REPLICATION_PENDING
-
REPLICATION_IN_PROGRESS
public static final AppReplicationStatus REPLICATION_IN_PROGRESS
-
REPLICATED
public static final AppReplicationStatus REPLICATED
-
PARTIALLY_REPLICATED
public static final AppReplicationStatus PARTIALLY_REPLICATED
-
DELTA_REPLICATION_IN_PROGRESS
public static final AppReplicationStatus DELTA_REPLICATION_IN_PROGRESS
-
DELTA_REPLICATED
public static final AppReplicationStatus DELTA_REPLICATED
-
DELTA_REPLICATION_FAILED
public static final AppReplicationStatus DELTA_REPLICATION_FAILED
-
REPLICATION_FAILED
public static final AppReplicationStatus REPLICATION_FAILED
-
REPLICATION_STOPPING
public static final AppReplicationStatus REPLICATION_STOPPING
-
REPLICATION_STOP_FAILED
public static final AppReplicationStatus REPLICATION_STOP_FAILED
-
REPLICATION_STOPPED
public static final AppReplicationStatus REPLICATION_STOPPED
-
UNKNOWN_TO_SDK_VERSION
public static final AppReplicationStatus UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AppReplicationStatus[] 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 (AppReplicationStatus c : AppReplicationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppReplicationStatus 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<AppReplicationStatus>
-
fromValue
public static AppReplicationStatus 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:
- AppReplicationStatus corresponding to the value
-
knownValues
public static Set<AppReplicationStatus> 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 knownAppReplicationStatuss
-
-