public enum AttributeTypeEnumeration extends Enum<AttributeTypeEnumeration>
Java class for AttributeTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AttributeTypeEnumeration">
<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 AttributeTypeEnumeration |
fromValue(String v) |
String |
value() |
static AttributeTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeTypeEnumeration ID_AT_COMMON_NAME
public static final AttributeTypeEnumeration ID_AT_LOCALITY_NAME
public static final AttributeTypeEnumeration ID_AT_ORGANIZATION_NAME
public static final AttributeTypeEnumeration ID_AT_ORGANIZATIONAL_UNIT_NAME
public static final AttributeTypeEnumeration ID_AT_COUNTRY_NAME
public static AttributeTypeEnumeration[] values()
for (AttributeTypeEnumeration c : AttributeTypeEnumeration.values()) System.out.println(c);
public static AttributeTypeEnumeration 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 AttributeTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.