Qore DataProvider Module Reference  2.5
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 
32 namespace DataProvider {
35 
36 public:
38  constructor(AbstractDataProviderType element_type, bool or_nothing = False, *hash<auto> options, *hash<auto> tags)
39  ;
40 
41 
43  constructor(Type element_type, bool or_nothing = False, *hash<auto> options, *hash<auto> tags)
44  ;
45 
46 
48  *Type getValueType();
49 
50 
53 
54 
56  *hash<string, AbstractDataField> getFields();
57 
58 
60  hash<string, bool> getAcceptTypeHash();
61 
62 
64  hash<string, bool> getReturnTypeHash();
65 
66 
68 
74  auto acceptsValue(auto value);
75 
76 
78 protected:
80 public:
81 
82 };
83 };
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:187
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:203
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:200
describes a data type based on a hash
Definition: ListDataType.qc.dox.h:28
AbstractDataProviderType element_type
element type
Definition: ListDataType.qc.dox.h:36
describes a data type based on a hash
Definition: SoftListDataType.qc.dox.h:34
hash< string, bool > getReturnTypeHash()
returns a hash of base types returned by this type; keys are type names
constructor(Type element_type, bool or_nothing=False, *hash< auto > options, *hash< auto > tags)
creates the object
*Type getValueType()
returns the base type for the type, if any
*AbstractDataProviderType getElementType()
returns the subtype (for lists or hashes) if there is only one
init(AbstractDataProviderType element_type, bool or_nothing)
common constructor initialization
*hash< string, AbstractDataField > getFields()
returns the fields of the data structure; if any
constructor(AbstractDataProviderType element_type, bool or_nothing=False, *hash< auto > options, *hash< auto > tags)
creates the object
hash< string, bool > getAcceptTypeHash()
returns a hash of base types accepted by this type; keys are type names
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
const False
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27