com.filenet.rm.bds
Class DataType
- java.lang.Object
com.filenet.rm.bds.ConstantObject
com.filenet.rm.bds.DataType
- public class DataType
- extends ConstantObject
PropertyValue
and ConfigItemType
.
See Also:
Field Summary
Modifier and Type | Field and Description |
---|---|
|
TYPE_BINARY
Represents binary (e.g.,
byte[] ) data.
|
|
TYPE_BINARY_AS_INT
|
|
TYPE_BOOLEAN
Represents
boolean data.
|
|
TYPE_BOOLEAN_AS_INT
|
|
TYPE_DATE
Represents
Calendar data.
|
|
TYPE_DATE_AS_INT
|
|
TYPE_DOUBLE
Represents
double data.
|
|
TYPE_DOUBLE_AS_INT
|
|
TYPE_GUID
Represents
GUID data.
|
|
TYPE_GUID_AS_INT
|
|
TYPE_INTEGER
Represents
int data.
|
|
TYPE_INTEGER_AS_INT
|
|
TYPE_OBJECT
Represents
ObjectReference data.
|
|
TYPE_OBJECT_AS_INT
|
|
TYPE_STRING
Represents
String data.
|
|
TYPE_STRING_AS_INT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
fromInteger(int dataTypeAsInt)
Returns appropriate
DataType instance based upon
its corresponding integer value.
|
|
fromObjectIdent(java.lang.Object ident)
Returns appropriate
DataType instance based upon
its an identifying Integer or String .
|
Methods inherited from class com.filenet.rm.bds.ConstantObject |
---|
getEnumeratedList, getIntValue, getLocalizedStringValue, getLocalizedStringValue, getStringValue |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail
TYPE_BINARY_AS_INT
- public static final int TYPE_BINARY_AS_INT
See Also:
TYPE_BINARY
- public static final DataType TYPE_BINARY
TYPE_BOOLEAN_AS_INT
- public static final int TYPE_BOOLEAN_AS_INT
See Also:
TYPE_BOOLEAN
- public static final DataType TYPE_BOOLEAN
Represents
boolean
data.
TYPE_DATE_AS_INT
- public static final int TYPE_DATE_AS_INT
See Also:
TYPE_DATE
- public static final DataType TYPE_DATE
Represents
Calendar
data.
TYPE_DOUBLE_AS_INT
- public static final int TYPE_DOUBLE_AS_INT
See Also:
TYPE_DOUBLE
- public static final DataType TYPE_DOUBLE
Represents
double
data.
TYPE_GUID_AS_INT
- public static final int TYPE_GUID_AS_INT
See Also:
TYPE_GUID
- public static final DataType TYPE_GUID
Represents
GUID
data.
TYPE_INTEGER_AS_INT
- public static final int TYPE_INTEGER_AS_INT
See Also:
TYPE_INTEGER
- public static final DataType TYPE_INTEGER
Represents
int
data.
TYPE_OBJECT_AS_INT
- public static final int TYPE_OBJECT_AS_INT
See Also:
TYPE_OBJECT
- public static final DataType TYPE_OBJECT
Represents
ObjectReference
data.
TYPE_STRING_AS_INT
- public static final int TYPE_STRING_AS_INT
See Also:
TYPE_STRING
- public static final DataType TYPE_STRING
Represents
String
data.
Method Detail
fromObjectIdent
- public static DataType fromObjectIdent( java.lang.Object ident)
Returns appropriate
DataType
instance based upon
its an identifying Integer
or String
.
Parameters:
ident
- Integer
or String
integer. Returns:
the propert
DataType
instance or null
if none found. fromInteger
- public static DataType fromInteger( int dataTypeAsInt)
Returns appropriate
DataType
instance based upon
its corresponding integer
value.
Parameters:
dataTypeAsInt
- the corresponding integer
value. Returns:
the propert
DataType
instance or null
if none found.
byte[]
) data.