static enum SSLCertGenUtil.RequestInfo extends java.lang.Enum<SSLCertGenUtil.RequestInfo>
| Enum Constant and Description |
|---|
C
Country code
|
L
Locality (city)
|
O
Organization
|
OU
Organization unit
|
ST
State (province name)
|
| Modifier and Type | Method and Description |
|---|---|
static SSLCertGenUtil.RequestInfo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SSLCertGenUtil.RequestInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSLCertGenUtil.RequestInfo OU
public static final SSLCertGenUtil.RequestInfo O
public static final SSLCertGenUtil.RequestInfo L
public static final SSLCertGenUtil.RequestInfo ST
public static final SSLCertGenUtil.RequestInfo C
public static SSLCertGenUtil.RequestInfo[] values()
for (SSLCertGenUtil.RequestInfo c : SSLCertGenUtil.RequestInfo.values()) System.out.println(c);
public static SSLCertGenUtil.RequestInfo valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null