Data types
The following table shows the Comindware Tracker data types.
Data type |
Description |
---|---|
Object |
Use the Object data type to declare an object, for example, a task, an item, an application or an account. |
Number |
The Number data type represents floating-point values. |
String |
Use the String data type to define a series of characters. |
Boolean |
Use the Boolean data type to contain two-state values such as true/false. |
List |
The List data type represents an ordered collection of values, called elements, each of which is of the same Comindware data type. |
DateTime |
Use the DateTime data type to contain date and time values. |
Duration |
The Duration data type represents time intervals. The value is the number of seconds in the interval in ISO format. |
You can add and subtract DateTime and Duration values, using the following rules.
Operation |
Result |
---|---|
duration + duration |
duration |
datetime + duration |
datetime |
duration - duration |
duration |
datetime - duration |
datetime |
datetime - datetime |
duration |