com.filenet.rm.bds

Class DataType

  1. java.lang.Object
  2. extended bycom.filenet.rm.bds.ConstantObject
  3. extended bycom.filenet.rm.bds.DataType

  1. public class DataType
  2. extends ConstantObject
DataType is an enumerated constant object class that defines a set of allowed data types for PropertyValue and ConfigItemType.
See Also:
PropertyValue, ConfigItemType

Field Summary

Modifier and Type Field and Description
  1. static
  2. DataType
TYPE_BINARY
Represents binary (e.g., byte[]) data.
  1. static
  2. int
TYPE_BINARY_AS_INT
  1. static
  2. DataType
TYPE_BOOLEAN
Represents boolean data.
  1. static
  2. int
TYPE_BOOLEAN_AS_INT
  1. static
  2. DataType
TYPE_DATE
Represents Calendar data.
  1. static
  2. int
TYPE_DATE_AS_INT
  1. static
  2. DataType
TYPE_DOUBLE
Represents double data.
  1. static
  2. int
TYPE_DOUBLE_AS_INT
  1. static
  2. DataType
TYPE_GUID
Represents GUID data.
  1. static
  2. int
TYPE_GUID_AS_INT
  1. static
  2. DataType
TYPE_INTEGER
Represents int data.
  1. static
  2. int
TYPE_INTEGER_AS_INT
  1. static
  2. DataType
TYPE_OBJECT
Represents ObjectReference data.
  1. static
  2. int
TYPE_OBJECT_AS_INT
  1. static
  2. DataType
TYPE_STRING
Represents String data.
  1. static
  2. int
TYPE_STRING_AS_INT

Method Summary

Modifier and Type Method and Description
  1. static
  2. DataType
fromInteger(int dataTypeAsInt)
Returns appropriate DataType instance based upon its corresponding integer value.
  1. static
  2. DataType
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

  1. public static final int TYPE_BINARY_AS_INT
See Also:

TYPE_BINARY

  1. public static final DataType TYPE_BINARY
Represents binary (e.g., byte[]) data.

TYPE_BOOLEAN_AS_INT

  1. public static final int TYPE_BOOLEAN_AS_INT
See Also:

TYPE_BOOLEAN

  1. public static final DataType TYPE_BOOLEAN
Represents boolean data.

TYPE_DATE_AS_INT

  1. public static final int TYPE_DATE_AS_INT
See Also:

TYPE_DATE

  1. public static final DataType TYPE_DATE
Represents Calendar data.

TYPE_DOUBLE_AS_INT

  1. public static final int TYPE_DOUBLE_AS_INT
See Also:

TYPE_DOUBLE

  1. public static final DataType TYPE_DOUBLE
Represents double data.

TYPE_GUID_AS_INT

  1. public static final int TYPE_GUID_AS_INT
See Also:

TYPE_GUID

  1. public static final DataType TYPE_GUID
Represents GUID data.

TYPE_INTEGER_AS_INT

  1. public static final int TYPE_INTEGER_AS_INT
See Also:

TYPE_INTEGER

  1. public static final DataType TYPE_INTEGER
Represents int data.

TYPE_OBJECT_AS_INT

  1. public static final int TYPE_OBJECT_AS_INT
See Also:

TYPE_OBJECT

  1. public static final DataType TYPE_OBJECT
Represents ObjectReference data.

TYPE_STRING_AS_INT

  1. public static final int TYPE_STRING_AS_INT
See Also:

TYPE_STRING

  1. public static final DataType TYPE_STRING
Represents String data.

Method Detail

fromObjectIdent

  1. 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

  1. 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.