Qore DataProvider Module Reference 3.0
Loading...
Searching...
No Matches
QoreNumberDataTypeBase.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DataProvider {
29
30public:
31protected:
34
35
36public:
37
39
41protected:
42 constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
43public:
44
45
47
53 auto acceptsValue(auto value);
54
55
57 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
58
59
60
62
65
66};
67};
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
Type type
the Qore type
Definition QoreDataType.qc.dox.h:51
describes a data type based on number types with validation for parsing strings when used with soft t...
Definition QoreNumberDataTypeBase.qc.dox.h:28
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
const SupportedSoftOptions
supported soft options
Definition QoreNumberDataTypeBase.qc.dox.h:33
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
constructor(Type type, *hash< auto > options, *hash< auto > tags)
creates the object
Qore AbstractDataField class definition.
Definition AbstractDataField.qc.dox.h:27