Enum AttributeInfo.Subtypes
java.lang.Object
java.lang.Enum<AttributeInfo.Subtypes>
org.identityconnectors.framework.common.objects.AttributeInfo.Subtypes
- All Implemented Interfaces:
Serializable,Comparable<AttributeInfo.Subtypes>
- Enclosing class:
AttributeInfo
Enumeration of pre-defined attribute subtypes.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCase-ignore (case-insensitive) string.JSON-formatted stringLDAP Distinguished Name (RFC 4511)Unique Resource Identifier (RFC 3986)Universally unique identifier (UUID)XML-formatted string (https://www.w3.org/TR/REC-xml/) -
Method Summary
Modifier and TypeMethodDescriptiontoString()static AttributeInfo.SubtypesReturns the enum constant of this type with the specified name.static AttributeInfo.Subtypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
STRING_CASE_IGNORE
Case-ignore (case-insensitive) string. -
STRING_URI
Unique Resource Identifier (RFC 3986) -
STRING_LDAP_DN
LDAP Distinguished Name (RFC 4511) -
STRING_UUID
Universally unique identifier (UUID) -
STRING_XML
XML-formatted string (https://www.w3.org/TR/REC-xml/) -
STRING_JSON
JSON-formatted string
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toString
- Overrides:
toStringin classEnum<AttributeInfo.Subtypes>
-