public static enum X509Cert.SubjectName extends Enum<X509Cert.SubjectName>
Enum Constant and Description |
---|
C |
CN |
GIVENNAME |
O |
OU |
SERIALNUMBER |
SURNAME |
Modifier and Type | Method and Description |
---|---|
static X509Cert.SubjectName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X509Cert.SubjectName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X509Cert.SubjectName SERIALNUMBER
public static final X509Cert.SubjectName GIVENNAME
public static final X509Cert.SubjectName SURNAME
public static final X509Cert.SubjectName CN
public static final X509Cert.SubjectName OU
public static final X509Cert.SubjectName O
public static final X509Cert.SubjectName C
public static X509Cert.SubjectName[] values()
for (X509Cert.SubjectName c : X509Cert.SubjectName.values()) System.out.println(c);
public static X509Cert.SubjectName 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 © 2023. All rights reserved.