Qore DataProvider Module Reference 2.7.5
Loading...
Searching...
No Matches
QoreIntDataTypeBase.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DataProvider {
29
30public:
31protected:
34 "number.format": <DataProviderTypeOptionInfo>{
35 "type": Type::String,
36 "desc": "the format string for converting strings to numbers",
37 },
38 };
39
40public:
41
43
45protected:
46 constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
47public:
48
49
51
57 auto acceptsValue(auto value);
58
59
61 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
62
63
65
68
69};
70};
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:206
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:222
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:219
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:31
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:36
describes a data type based on int types with validation for parsing strings when used with soft type...
Definition: QoreIntDataTypeBase.qc.dox.h:28
constructor(Type type, *hash< auto > options, *hash< auto > tags)
creates the object
const SupportedSoftOptions
supported soft options
Definition: QoreIntDataTypeBase.qc.dox.h:33
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
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
describes type options
Definition: AbstractDataProviderType.qc.dox.h:144