protected static enum Name.NameField extends Enum<Name.NameField> implements EnumType
| Enum Constant and Description |
|---|
RDN_SEQUENCE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getValue() |
static Name.NameField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Name.NameField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Name.NameField RDN_SEQUENCE
public static Name.NameField[] values()
for (Name.NameField c : Name.NameField.values()) System.out.println(c);
public static Name.NameField 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 © 2014–2017 The Apache Software Foundation. All rights reserved.