public enum CertificateState extends Enum<CertificateState>
Enum Constant and Description |
---|
ACTIVE
Enum value active.
|
DELETE_FAILED
Enum value deleteFailed.
|
DELETING
Enum value deleting.
|
Modifier and Type | Method and Description |
---|---|
static CertificateState |
fromString(String value)
Parses a serialized value to a CertificateState instance.
|
String |
toString() |
static CertificateState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateState ACTIVE
public static final CertificateState DELETING
public static final CertificateState DELETE_FAILED
public static CertificateState[] values()
for (CertificateState c : CertificateState.values()) System.out.println(c);
public static CertificateState 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 static CertificateState fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<CertificateState>
Copyright © 2019. All rights reserved.