public static enum AttributeDescriptor.DataType extends Enum<AttributeDescriptor.DataType>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
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 nameNullPointerException - if the argument is nullpublic static AttributeDescriptor.DataType parse(String type)
type - The type to convertpublic String toString()
toString in class Enum<AttributeDescriptor.DataType>Copyright © 2011–2016 UnboundID. All rights reserved.