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 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 © 2017 Nuxeo. All rights reserved.