public static enum CertUtil.X500PrincipalFormat extends Enum<CertUtil.X500PrincipalFormat>
Enum Constant and Description |
---|
READABLE
Similar to RFC2253, but with spaces.
|
RFC2253
The format described in RFC2253 (without spaces).
|
Modifier and Type | Method and Description |
---|---|
static CertUtil.X500PrincipalFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertUtil.X500PrincipalFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertUtil.X500PrincipalFormat RFC2253
public static final CertUtil.X500PrincipalFormat READABLE
public static CertUtil.X500PrincipalFormat[] values()
for (CertUtil.X500PrincipalFormat c : CertUtil.X500PrincipalFormat.values()) System.out.println(c);
public static CertUtil.X500PrincipalFormat 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 © 2003-2024 Virginia Tech. All Rights Reserved.