Package org.xipki.qa.ca
Enum CaEnrollBenchEntry.RandomDn
- java.lang.Object
-
- java.lang.Enum<CaEnrollBenchEntry.RandomDn>
-
- org.xipki.qa.ca.CaEnrollBenchEntry.RandomDn
-
- All Implemented Interfaces:
Serializable,Comparable<CaEnrollBenchEntry.RandomDn>
- Enclosing class:
- CaEnrollBenchEntry
public static enum CaEnrollBenchEntry.RandomDn extends Enum<CaEnrollBenchEntry.RandomDn>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CaEnrollBenchEntry.RandomDngetInstance(String text)static CaEnrollBenchEntry.RandomDnvalueOf(String name)Returns the enum constant of this type with the specified name.static CaEnrollBenchEntry.RandomDn[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GIVENNAME
public static final CaEnrollBenchEntry.RandomDn GIVENNAME
-
SURNAME
public static final CaEnrollBenchEntry.RandomDn SURNAME
-
STREET
public static final CaEnrollBenchEntry.RandomDn STREET
-
POSTALCODE
public static final CaEnrollBenchEntry.RandomDn POSTALCODE
-
O
public static final CaEnrollBenchEntry.RandomDn O
-
OU
public static final CaEnrollBenchEntry.RandomDn OU
-
CN
public static final CaEnrollBenchEntry.RandomDn CN
-
-
Method Detail
-
values
public static CaEnrollBenchEntry.RandomDn[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CaEnrollBenchEntry.RandomDn c : CaEnrollBenchEntry.RandomDn.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaEnrollBenchEntry.RandomDn valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getInstance
public static CaEnrollBenchEntry.RandomDn getInstance(String text)
-
-