Qore DataProvider Module Reference 3.0
Loading...
Searching...
No Matches
SoftListDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
25// assume local scope for variables, do not use "$" signs
26// require type definitions everywhere
28// enable all warnings
29
30
32namespace DataProvider {
35
36public:
38 constructor(AbstractDataProviderType element_type, bool or_nothing = False, *hash<auto> options, *hash<auto> tags, *list<auto> default_value, *hash<NameDescInfo> attr)
39 ;
40
41
43 constructor(Type element_type, bool or_nothing = False, *hash<auto> options, *hash<auto> tags, *list<auto> default_value, *hash<NameDescInfo> attr)
44 ;
45
46
48 constructor(string name, AbstractDataProviderType element_type, bool or_nothing = False, *hash<auto> options, *hash<auto> tags, *list<auto> default_value, *hash<NameDescInfo> attr)
49 ;
50
51
53 constructor(string name, Type element_type, bool or_nothing = False, *hash<auto> options, *hash<auto> tags, *list<auto> default_value, *hash<NameDescInfo> attr)
54 ;
55
56
59
60
62 *hash<string, AbstractDataField> getFields();
63
64
66
72 auto acceptsValue(auto value);
73
74
76protected:
78public:
79
80
82protected:
83 Type getQoreType(Type element_type, bool or_nothing);
84public:
85
86};
87};
describes a data type
Definition AbstractDataProviderType.qc.dox.h:139
*hash< auto > tags
type tags
Definition AbstractDataProviderType.qc.dox.h:155
describes a data type based on a hash
Definition ListDataType.qc.dox.h:28
AbstractDataProviderType element_type
element type
Definition ListDataType.qc.dox.h:33
auto default_value
Default value for type.
Definition QoreDataType.qc.dox.h:72
describes a data type based on a hash
Definition SoftListDataType.qc.dox.h:34
*hash< string, AbstractDataField > getFields()
returns the fields of the data structure; if any
Type getQoreType(Type element_type, bool or_nothing)
Returns the underlying Qore type for this type.
*AbstractDataProviderType getElementType()
returns the subtype (for lists or hashes) if there is only one
init(AbstractDataProviderType element_type, bool or_nothing)
common constructor initialization
constructor(string name, Type element_type, bool or_nothing=False, *hash< auto > options, *hash< auto > tags, *list< auto > default_value, *hash< NameDescInfo > attr)
creates the object
constructor(string name, AbstractDataProviderType element_type, bool or_nothing=False, *hash< auto > options, *hash< auto > tags, *list< auto > default_value, *hash< NameDescInfo > attr)
creates the object
constructor(Type element_type, bool or_nothing=False, *hash< auto > options, *hash< auto > tags, *list< auto > default_value, *hash< NameDescInfo > attr)
creates the object
constructor(AbstractDataProviderType element_type, bool or_nothing=False, *hash< auto > options, *hash< auto > tags, *list< auto > default_value, *hash< NameDescInfo > attr)
creates the object
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
Qore AbstractDataField class definition.
Definition AbstractDataField.qc.dox.h:27