Qore DataProvider Module Reference 2.7.5
Loading...
Searching...
No Matches
QoreDateDataTypeBase.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DataProvider {
28
32
33public:
34protected:
37 "date.output_timezone": <DataProviderTypeOptionInfo>{
38 "type": "object<TimeZone>",
39 "desc": "the time zone to use when writing to the type",
40 },
41 };
42
45 "date.format": <DataProviderTypeOptionInfo>{
46 "type": Type::String,
47 "desc": "the format string for converting strings to dates",
48 },
49 "date.input_timezone": <DataProviderTypeOptionInfo>{
50 "type": "object<TimeZone>",
51 "desc": "the time zone for external data when writing to the type and converting strings to dates",
52 },
53 };
54
55public:
56
58
60protected:
61 constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
62public:
63
64
66
72 auto acceptsValue(auto value);
73
74
76 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
77
78
80
83
84};
85};
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 a date type with validation for string parsing and time zone support
Definition: QoreDateDataTypeBase.qc.dox.h:31
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
const SupportedSoftOptions
supported soft options
Definition: QoreDateDataTypeBase.qc.dox.h:44
const SupportedOptions
supported options
Definition: QoreDateDataTypeBase.qc.dox.h:36
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
constructor(Type type, *hash< auto > options, *hash< auto > tags)
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
describes type options
Definition: AbstractDataProviderType.qc.dox.h:144