Provides a set of constants that specify the data type of the values that a property, choice list, or column definition can hold. These constants are returned by the DataType property. When creating a choice list, you must set its DataType property to either LONG or STRING.


Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Enum TypeID
C#
public enum TypeID
C++
public enum class TypeID
J#
public enum TypeID
JScript
public enum TypeID

Members

Member NameDescription
OBJECTSpecifies an object data type. Represents an object that is instantiated from a Content Engine class.
GUIDSpecifies a GUID (ID) data type. Represents a Globally Unique Identifier (GUID) or DCE Universally Unique Identifier (UUID), which is a unique 128-bit number, as a string of 32 hexadecimal characters enclosed by brackets in the following format: {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}. For example, {3F2504E0-4F89-11D3-9A0C-0305E82C3301}.
LONGSpecifies an integer data type. Represents a signed 32-bit integer, which has a value ranging from -2,147, 483,648 to +2,147,483,647.
BOOLEANSpecifies a Boolean data type. Represents Boolean data having a value of true or false.
DOUBLESpecifies a double (Float64) data type. Represents an IEEE-standard 64-bit floating-point number, which has a value ranging from -1.79769313486232e308 to +1.79769313486232e308.
BINARYSpecifies a binary data type. Represents binary data by using an array of unsigned 8-bit bytes.
STRINGSpecifies a string data type. Represents text consisting of a sequential collection of 16-bit Unicode characters.
DATESpecifies a DateTime data type. Represents an instance in time as a date and a time of day in accordance with ISO 8601.

See Also