public enum CertStatus extends Enum<CertStatus>
| Modifier and Type | Method and Description |
|---|---|
static CertStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertStatus GOOD
public static final CertStatus REVOKED
public static final CertStatus UNKNOWN
public static CertStatus[] values()
for (CertStatus c : CertStatus.values()) System.out.println(c);
public static CertStatus 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 nullCopyright © 2012–2019 Danish Maritime Authority. All rights reserved.