Qore DataProvider Module Reference 3.1
Loading...
Searching...
No Matches
QoreStringDataTypeBase.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
31namespace DataProvider {
33
37
38public:
39protected:
41 const SupportedOptions = ...;
42
43
46
47
48public:
49
51
53 constructor(Type type, *hash<auto> options, *hash<auto> tags, *hash<auto> default_value, *hash<NameDescInfo> attr) ;
54
55
57
63 auto acceptsValue(auto value);
64
65
67 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
68
69
71
74
75
77protected:
78 setOptionInternal(string opt, auto value);
79public:
80
81};
82};
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
auto default_value
Default value for type.
Definition QoreDataType.qc.dox.h:72
Type type
the Qore type
Definition QoreDataType.qc.dox.h:51
describes a data type based on a string tyoe with a target encoding option
Definition QoreStringDataTypeBase.qc.dox.h:36
setOptionInternal(string opt, auto value)
sets the given option without any validation of the option
constructor(Type type, *hash< auto > options, *hash< auto > tags, *hash< auto > default_value, *hash< NameDescInfo > attr)
creates the object with the given options
const SupportedOrNothingOptions
supported "or nothing" options
Definition QoreStringDataTypeBase.qc.dox.h:45
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
const SupportedOptions
supported options
Definition QoreStringDataTypeBase.qc.dox.h:41
*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