public enum CNField extends Enum<CNField>
Enum Constant and Description |
---|
C
Country name
|
CN
Common Name
|
Email
Email
|
O
Organization name
|
OU
Organizational Unit name
|
UserID
UserID
|
Modifier and Type | Method and Description |
---|---|
static CNField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CNField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CNField C
public static final CNField O
public static final CNField OU
public static final CNField CN
public static final CNField Email
public static final CNField UserID
public static CNField[] values()
for (CNField c : CNField.values()) System.out.println(c);
public static CNField 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 © 2015 Nuxeo SA. All rights reserved.