public static enum AttributeInfo.Subtypes extends Enum<AttributeInfo.Subtypes>
Enum Constant and Description |
---|
STRING_CASE_IGNORE
Case-ignore (case-insensitive) string.
|
STRING_JSON
JSON-formatted string
|
STRING_LDAP_DN
LDAP Distinguished Name (RFC 4511)
|
STRING_URI
Unique Resource Identifier (RFC 3986)
|
STRING_UUID
Universally unique identifier (UUID)
|
STRING_XML
XML-formatted string (https://www.w3.org/TR/REC-xml/)
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static AttributeInfo.Subtypes |
valueOf(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.
|
public static final AttributeInfo.Subtypes STRING_CASE_IGNORE
public static final AttributeInfo.Subtypes STRING_URI
public static final AttributeInfo.Subtypes STRING_LDAP_DN
public static final AttributeInfo.Subtypes STRING_UUID
public static final AttributeInfo.Subtypes STRING_XML
public static final AttributeInfo.Subtypes STRING_JSON
public static AttributeInfo.Subtypes[] values()
for (AttributeInfo.Subtypes c : AttributeInfo.Subtypes.values()) System.out.println(c);
public static AttributeInfo.Subtypes 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 toString()
toString
in class Enum<AttributeInfo.Subtypes>
Copyright © 2019. All rights reserved.