public enum AttributeType extends Enum<AttributeType>
Java class for AttributeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AttributeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="id-at-commonName"/>
<enumeration value="id-at-localityName"/>
<enumeration value="id-at-organizationName"/>
<enumeration value="id-at-organizationalUnitName"/>
<enumeration value="id-at-countryName"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ID_AT_COMMON_NAME
Common Name - (OID: joint-iso-ccitt(2) ds(5) 4 3)
|
ID_AT_COUNTRY_NAME
Country Name - (OID: joint-iso-ccitt(2) ds(5) 4 6)
|
ID_AT_LOCALITY_NAME
Locality - (OID: joint-iso-ccitt(2) ds(5) 4 7)
|
ID_AT_ORGANIZATION_NAME
Organization Name - (OID: joint-iso-ccitt(2) ds(5) 4 10)
|
ID_AT_ORGANIZATIONAL_UNIT_NAME
Organization Unit Name - (OID: joint-iso-ccitt(2) ds(5) 4 11)
|
| Modifier and Type | Method and Description |
|---|---|
static AttributeType |
fromValue(String v)
From value attribute type.
|
String |
value()
Value string.
|
static AttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeType ID_AT_COMMON_NAME
public static final AttributeType ID_AT_LOCALITY_NAME
public static final AttributeType ID_AT_ORGANIZATION_NAME
public static final AttributeType ID_AT_ORGANIZATIONAL_UNIT_NAME
public static final AttributeType ID_AT_COUNTRY_NAME
public static AttributeType[] values()
for (AttributeType c : AttributeType.values()) System.out.println(c);
public static AttributeType 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 value()
public static AttributeType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.