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
property. When creating a choice list, you must set its
property to either
or
.
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
Description | |
---|---|
OBJECT | Specifies an object data type. Represents an object that is instantiated from a Content Engine class. |
GUID | Specifies 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}. |
LONG | Specifies 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. |
BOOLEAN | Specifies a Boolean data type. Represents Boolean data having a value of or . |
DOUBLE | Specifies 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. |
BINARY | Specifies a binary data type. Represents binary data by using an array of unsigned 8-bit bytes. |
STRING | Specifies a string data type. Represents text consisting of a sequential collection of 16-bit Unicode characters. |
DATE | Specifies a DateTime data type. Represents an instance in time as a date and a time of day in accordance with ISO 8601. |