|
EDCS Reference Manual
Types EDCS_Attribute_Value_Type |
|---|
/* * REGISTERABLE ENUM: EDCS_Attribute_Value_Type * * This data type specifies the types (given in the abstract specification) * that are possible for an EA's value type. */ typedef EDCS_Integer EDCS_Attribute_Value_Type;
| Enumerant | Definition | Value |
|---|---|---|
| EDCS_AVT_VALUE_CHARACTERISTIC | The EA defines a value characteristic |
0 |
| EDCS_AVT_REAL | The EA defines a real-valued quantity. |
1 |
| EDCS_AVT_INTEGER | The EA defines an integer quantity. |
2 |
| EDCS_AVT_COUNT | The EA defines a count. |
3 |
| EDCS_AVT_INDEX | The EA defines an index. |
4 |
| EDCS_AVT_STRING | The EA defines a string value. |
5 |
| EDCS_AVT_CONSTRAINED_STRING | The EA defines a constrained string value. |
6 |
| EDCS_AVT_KEY | The EA defines a string value that serves as a key. |
7 |
| EDCS_AVT_ENUMERATION | The EA is bound to a set of EEs. |
8 |
| EDCS_AVT_BOOLEAN | The EA defines a boolean value. |
9 |
| EDCS_AVT_NULL | The EA does not have a value. |
10 |
|