Enumerates the supported command-line option value types.
Declared in <balcl_optiontype.h>
enum Enum;
| Name | Description |
|---|---|
e_VOID | Unset option type. |
e_BOOL | Boolean option type. |
e_CHAR | Character option type. |
e_INT | Integer option type. |
e_INT64 | Int64 option type. |
e_DOUBLE | Floating-point option type. |
e_STRING | String option type. |
e_DATETIME | Datetime option type. |
e_DATE | Date option type. |
e_TIME | Time option type. |
e_CHAR_ARRAY | Array of char values (CharArray). |
e_INT_ARRAY | Array of int values (IntArray). |
e_INT64_ARRAY | Array of Int64 values (Int64Array). |
e_DOUBLE_ARRAY | Array of double values (DoubleArray). |
e_STRING_ARRAY | Array of string values (StringArray). |
e_DATETIME_ARRAY | Array of Datetime values (DatetimeArray). |
e_DATE_ARRAY | Array of Date values (DateArray). |
e_TIME_ARRAY | Array of Time values (TimeArray). |