@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum CertificateAuthorityStatus extends Enum<CertificateAuthorityStatus>
Enum Constant and Description |
---|
ACTIVE |
CREATING |
DELETED |
DISABLED |
EXPIRED |
FAILED |
PENDING_CERTIFICATE |
Modifier and Type | Method and Description |
---|---|
static CertificateAuthorityStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static CertificateAuthorityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateAuthorityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateAuthorityStatus CREATING
public static final CertificateAuthorityStatus PENDING_CERTIFICATE
public static final CertificateAuthorityStatus ACTIVE
public static final CertificateAuthorityStatus DELETED
public static final CertificateAuthorityStatus DISABLED
public static final CertificateAuthorityStatus EXPIRED
public static final CertificateAuthorityStatus FAILED
public static CertificateAuthorityStatus[] values()
for (CertificateAuthorityStatus c : CertificateAuthorityStatus.values()) System.out.println(c);
public static CertificateAuthorityStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<CertificateAuthorityStatus>
public static CertificateAuthorityStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.