Qore DataProvider Module Reference 3.2.2
Loading...
Searching...
No Matches
QoreStringDataTypeBase.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
24
26namespace DataProvider {
28
32
33public:
34protected:
36 const SupportedOptions = ...;
37
38
41
42
43public:
44
46
48 constructor(Type type, *hash<auto> options, *hash<auto> tags, *hash<auto> default_value, *hash<NameDescInfo> attr) ;
49
50
52
58 auto acceptsValue(auto value);
59
60
62 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
63
64
66
69
70
72protected:
73 setOptionInternal(string opt, auto value);
74public:
75
76};
77};
describes a data type
Definition AbstractDataProviderType.qc.dox.h:139
*hash< auto > tags
type tags
Definition AbstractDataProviderType.qc.dox.h:155
hash< auto > options
type options
Definition AbstractDataProviderType.qc.dox.h:152
describes a data type based on a Qore data type
Definition QoreDataType.qc.dox.h:46
auto default_value
Default value for type.
Definition QoreDataType.qc.dox.h:72
Type type
the Qore type
Definition QoreDataType.qc.dox.h:51
describes a data type based on a string tyoe with a target encoding option
Definition QoreStringDataTypeBase.qc.dox.h:31
setOptionInternal(string opt, auto value)
sets the given option without any validation of the option
constructor(Type type, *hash< auto > options, *hash< auto > tags, *hash< auto > default_value, *hash< NameDescInfo > attr)
creates the object with the given options
const SupportedOrNothingOptions
supported "or nothing" options
Definition QoreStringDataTypeBase.qc.dox.h:40
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
const SupportedOptions
supported options
Definition QoreStringDataTypeBase.qc.dox.h:36
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
Qore AbstractDataField class definition.
Definition AbstractDataField.qc.dox.h:27