public static enum EnrollCertRequest.Type extends Enum<EnrollCertRequest.Type>
| Enum Constant and Description |
|---|
CERT_REQ |
CROSS_CERT_REQ |
INIT_REQ |
KEY_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static EnrollCertRequest.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnrollCertRequest.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnrollCertRequest.Type CERT_REQ
public static final EnrollCertRequest.Type INIT_REQ
public static final EnrollCertRequest.Type KEY_UPDATE
public static final EnrollCertRequest.Type CROSS_CERT_REQ
public static EnrollCertRequest.Type[] values()
for (EnrollCertRequest.Type c : EnrollCertRequest.Type.values()) System.out.println(c);
public static EnrollCertRequest.Type 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 © 2018. All rights reserved.