Qore DataProvider Module Reference  1.2.1
QoreDateDataTypeBase.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 {
34 
38 
39 public:
40 protected:
42  const SupportedOptions = ...;
43 
44 
46  const SupportedSoftOptions = ...;
47 
48 
49 public:
50 
52 
54 protected:
55  constructor(Type type, *hash<auto> options) ;
56 public:
57 
58 
60 
66  auto acceptsValue(auto value);
67 
68 
70  *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
71 
72 
74 
77 
78 };
79 };
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
describes a data type based on a date type with validation for string parsing and time zone support ...
Definition: QoreDateDataTypeBase.qc.dox.h:37
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
const SupportedSoftOptions
supported soft options
Definition: QoreDateDataTypeBase.qc.dox.h:46
const SupportedOptions
supported options
Definition: QoreDateDataTypeBase.qc.dox.h:42
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:98
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:88
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:37