Qore DataProvider Module Reference  2.1.1
QoreIntDataTypeBase.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
25 namespace DataProvider {
29 
30 public:
31 protected:
33  const SupportedSoftOptions = ...;
34 
35 
36 public:
37 
39 
41 protected:
42  constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
43 public:
44 
45 
47 
53  auto acceptsValue(auto value);
54 
55 
57  *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
58 
59 
61 
64 
65 };
66 };
describes a data type based on int types with validation for parsing strings when used with soft type...
Definition: QoreIntDataTypeBase.qc.dox.h:28
const SupportedSoftOptions
supported soft options
Definition: QoreIntDataTypeBase.qc.dox.h:33
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:118
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:115
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:105
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:37