public enum DocumentAttributeDataType extends Enum<DocumentAttributeDataType>
DocumentAttributeContract.| Enum Constant and Description |
|---|
DATE_TIME
Indicates a document attribute which holds date and (optional) time information.
|
DECIMAL
Indicates a document attribute which holds a real number.
|
INTEGER
Indicates a document attribute which holds an integer value.
|
STRING
Indicates a document attribute which holds character data.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentAttributeDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentAttributeDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentAttributeDataType STRING
public static final DocumentAttributeDataType DATE_TIME
public static final DocumentAttributeDataType INTEGER
public static final DocumentAttributeDataType DECIMAL
public static DocumentAttributeDataType[] values()
for (DocumentAttributeDataType c : DocumentAttributeDataType.values()) System.out.println(c);
public static DocumentAttributeDataType 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 nullCopyright © 2005–2016 The Kuali Foundation. All rights reserved.