public enum OID extends Enum<OID>
AVAKeyword contains similar list| Enum Constant and Description |
|---|
C
Country
|
CN
Common Name
|
DC
Domain Component
|
DNQUALIFIER
DN Qualifier
|
EMAILADDRESS
E-Mail address
|
GENERATION
Generation
|
GIVENNAME
Given Name
|
INITIALS
Initials
|
IP
IP Address
|
L
Locality
|
O
Organisation
|
OU
Organisation Unit
|
SERIALNUMBER
Serial Number of the certificate
|
ST
State
|
STREET
Street
|
SURNAME
Surname
|
T
Title
|
UID
User ID
|
| Modifier and Type | Method and Description |
|---|---|
static OID |
getByName(String name) |
static OID |
getByObjectId(String objectId) |
String |
getName() |
String |
getObjectId() |
static Map<String,String> |
getOIDMap() |
static Set<OID> |
toOIDS(String[] names)
Checks for given names and returns a set of OIDs with same names.
|
static OID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OID CN
public static final OID SURNAME
public static final OID SERIALNUMBER
public static final OID C
public static final OID L
public static final OID ST
public static final OID STREET
public static final OID O
public static final OID OU
public static final OID T
public static final OID GIVENNAME
public static final OID INITIALS
public static final OID GENERATION
public static final OID DNQUALIFIER
public static final OID UID
public static final OID DC
public static final OID EMAILADDRESS
public static final OID IP
public static OID[] values()
for (OID c : OID.values()) System.out.println(c);
public static OID 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 nullpublic String getObjectId()
public String getName()
public static Map<String,String> getOIDMap()
public static OID getByObjectId(String objectId)
objectId - can be nullpublic static OID getByName(String name)
name - case insensitive name, the parameter can be nullCopyright © 2021. All rights reserved.