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