MetaTypes - Meta-type
The meta-type defines the sort of data type a property is referring to.
Enumarators overview
- Basic
(1) - Basic type
- Class
(4) - Class data type
- Enumeration
(2) - Enumerated data type
- Structure
(3) - Structure data type
- UndefinedMetaType
(0) - Undefined meta type
- View
(5) - View data type
Enumerator details
-
Basic - Basic type
ODABA supports a number of defined built-in data types, which are called basic data types.
Code: 1
to list -
Enumeration - Enumerated data type
An enumeration defines an enumerated value domain, which contains a number of enumerated values presented by codes and names. ODABA allows associating enumerators with types that correspond to the category.
Code: 2
to list -
Structure - Structure data type
Structures or complex data types, which consists of attributes, references and exclusive base structures, only.
Code: 3
to list -
Class - Class data type
Class data types are complex data types (similar to structures). In contrast to structures, classes may contain relationships, shared base classes, extents and behavior definitions.
Code: 4
to list -
View - View data type
View data types are complex data types defined as result structure of view methods.
Code: 5
to list