Qore DataProvider Module Reference  2.1.2
QoreDateDataTypeBase.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
25 namespace DataProvider {
28 
32 
33 public:
34 protected:
36  const SupportedOptions = ...;
37 
38 
40  const SupportedSoftOptions = ...;
41 
42 
43 public:
44 
46 
48 protected:
49  constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
50 public:
51 
52 
54 
60  auto acceptsValue(auto value);
61 
62 
64  *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
65 
66 
68 
71 
72 };
73 };
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:31
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
const SupportedSoftOptions
supported soft options
Definition: QoreDateDataTypeBase.qc.dox.h:40
const SupportedOptions
supported options
Definition: QoreDateDataTypeBase.qc.dox.h:36
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:118
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:115
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:105
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