public enum OSUCertType extends Enum<OSUCertType>
Enum Constant and Description |
---|
AAA |
CA |
Client |
Policy |
PrivateKey |
Remediation |
Modifier and Type | Method and Description |
---|---|
static OSUCertType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSUCertType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSUCertType CA
public static final OSUCertType Client
public static final OSUCertType AAA
public static final OSUCertType Remediation
public static final OSUCertType Policy
public static final OSUCertType PrivateKey
public static OSUCertType[] values()
for (OSUCertType c : OSUCertType.values()) System.out.println(c);
public static OSUCertType 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 null