|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<AttributeDescriptor.DataType>
com.unboundid.scim.schema.AttributeDescriptor.DataType
public static enum AttributeDescriptor.DataType
Defines the set of well known SCIM supported datatypes.
| Enum Constant Summary | |
|---|---|
BINARY
Binary data type. |
|
BOOLEAN
Boolean data type. |
|
COMPLEX
Complex data type. |
|
DATETIME
Date Time data type. |
|
DECIMAL
Decimal data type. |
|
INTEGER
Integer data type. |
|
STRING
String data type. |
|
| Method Summary | |
|---|---|
static AttributeDescriptor.DataType |
parse(String type)
Parses a supplied data type into a SCIM defined data type. |
String |
toString()
|
static AttributeDescriptor.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AttributeDescriptor.DataType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final AttributeDescriptor.DataType STRING
public static final AttributeDescriptor.DataType BOOLEAN
public static final AttributeDescriptor.DataType DATETIME
public static final AttributeDescriptor.DataType DECIMAL
public static final AttributeDescriptor.DataType INTEGER
public static final AttributeDescriptor.DataType BINARY
public static final AttributeDescriptor.DataType COMPLEX
| Method Detail |
|---|
public static AttributeDescriptor.DataType[] values()
for (AttributeDescriptor.DataType c : AttributeDescriptor.DataType.values()) System.out.println(c);
public static AttributeDescriptor.DataType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static AttributeDescriptor.DataType parse(String type)
type - The type to convert
public String toString()
toString in class Enum<AttributeDescriptor.DataType>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||