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
public static enum AttributeInfo.Subtypes extends Enum<AttributeInfo.Subtypes>
Enumeration of pre-defined attribute subtypes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description STRING_CASE_IGNORECase-ignore (case-insensitive) string.STRING_JSONJSON-formatted stringSTRING_LDAP_DNLDAP Distinguished Name (RFC 4511)STRING_URIUnique Resource Identifier (RFC 3986)STRING_UUIDUniversally unique identifier (UUID)STRING_XMLXML-formatted string (https://www.w3.org/TR/REC-xml/)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static AttributeInfo.SubtypesvalueOf(String name)Returns 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 Detail
-
STRING_CASE_IGNORE
public static final AttributeInfo.Subtypes STRING_CASE_IGNORE
Case-ignore (case-insensitive) string.
-
STRING_URI
public static final AttributeInfo.Subtypes STRING_URI
Unique Resource Identifier (RFC 3986)
-
STRING_LDAP_DN
public static final AttributeInfo.Subtypes STRING_LDAP_DN
LDAP Distinguished Name (RFC 4511)
-
STRING_UUID
public static final AttributeInfo.Subtypes STRING_UUID
Universally unique identifier (UUID)
-
STRING_XML
public static final AttributeInfo.Subtypes STRING_XML
XML-formatted string (https://www.w3.org/TR/REC-xml/)
-
STRING_JSON
public static final AttributeInfo.Subtypes STRING_JSON
JSON-formatted string
-
-
Method Detail
-
values
public static AttributeInfo.Subtypes[] 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 (AttributeInfo.Subtypes c : AttributeInfo.Subtypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeInfo.Subtypes 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<AttributeInfo.Subtypes>
-
-