Package com.adyen.model.nexo
Enum AttributeType
- java.lang.Object
-
- java.lang.Enum<AttributeType>
-
- com.adyen.model.nexo.AttributeType
-
- All Implemented Interfaces:
Serializable,Comparable<AttributeType>
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 Summary
Enum Constants Enum Constant Description ID_AT_COMMON_NAMECommon Name - (OID: joint-iso-ccitt(2) ds(5) 4 3)ID_AT_COUNTRY_NAMECountry Name - (OID: joint-iso-ccitt(2) ds(5) 4 6)ID_AT_LOCALITY_NAMELocality - (OID: joint-iso-ccitt(2) ds(5) 4 7)ID_AT_ORGANIZATION_NAMEOrganization Name - (OID: joint-iso-ccitt(2) ds(5) 4 10)ID_AT_ORGANIZATIONAL_UNIT_NAMEOrganization Unit Name - (OID: joint-iso-ccitt(2) ds(5) 4 11)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeTypefromValue(String v)From value attribute type.Stringvalue()Value string.static AttributeTypevalueOf(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.
-
-
-
Enum Constant Detail
-
ID_AT_COMMON_NAME
public static final AttributeType ID_AT_COMMON_NAME
Common Name - (OID: joint-iso-ccitt(2) ds(5) 4 3)
-
ID_AT_LOCALITY_NAME
public static final AttributeType ID_AT_LOCALITY_NAME
Locality - (OID: joint-iso-ccitt(2) ds(5) 4 7)
-
ID_AT_ORGANIZATION_NAME
public static final AttributeType ID_AT_ORGANIZATION_NAME
Organization Name - (OID: joint-iso-ccitt(2) ds(5) 4 10)
-
ID_AT_ORGANIZATIONAL_UNIT_NAME
public static final AttributeType ID_AT_ORGANIZATIONAL_UNIT_NAME
Organization Unit Name - (OID: joint-iso-ccitt(2) ds(5) 4 11)
-
ID_AT_COUNTRY_NAME
public static final AttributeType ID_AT_COUNTRY_NAME
Country Name - (OID: joint-iso-ccitt(2) ds(5) 4 6)
-
-
Method Detail
-
values
public static AttributeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AttributeType c : AttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static AttributeType fromValue(String v)
From value attribute type.- Parameters:
v- the v- Returns:
- the attribute type
-
-