|
auto | acceptsValue (auto value) |
| returns the value if the value can be assigned to the type
|
|
*hash< string, bool > | getAllowedValueMap () |
| Get allowed values.
|
|
*list< hash< AllowedValueInfo > > | getAllowedValues () |
| Get allowed values.
|
|
bool | getAllowedValuesCreatable () |
| Get the "allowed values creatable" flag.
|
|
*hash< auto > | getAttributes () |
| Returns custom attributes set on the field.
|
|
hash< DataFieldInfo > | getConfigInfo () |
| returns information about the field
|
|
auto | getDefaultValue () |
| get default value, if any
|
|
abstract *string | getDescription () |
| returns the description, if any
|
|
string | getDisplayName () |
| Returns the display name of the field.
|
|
*hash< string, bool > | getElementAllowedValueMap () |
| Get allowed values.
|
|
*list< hash< AllowedValueInfo > > | getElementAllowedValues () |
| Get element allowed values.
|
|
bool | getElementAllowedValuesCreatable () |
| Get the "element allowed values creatable" flag.
|
|
auto | getExampleValue (*hash< string, bool > emap, *string fname) |
| Returns any example value for the field, otherwise return example data from the type.
|
|
hash< DataFieldInfo > | getInfo () |
| returns information about the field
|
|
hash< DataFieldInfo > | getInputInfo () |
| returns information about the field as an input field
|
|
hash< DataFieldInfo > | getLocalInfo () |
| Returns information about the field without calling AbstractDataProviderType::getInfo() on the type.
|
|
AbstractDataField | getMandatoryType () |
| Returns a mandatory (i.e. not "or nothing") field equivalent to the current field.
|
|
abstract string | getName () |
| returns the name of the field
|
|
*hash< auto > | getOptions () |
| returns options set on the field's type
|
|
auto | getOptionValue (string opt) |
| returns the value of the given option on the field's type
|
|
AbstractDataField | getOrNothingType () |
| returns a field with an "or nothing" type equivalent to the current type
|
|
*string | getShortDescription () |
| Returns the short description, if any.
|
|
AbstractDataField | getSoftType () |
| returns a field with a "soft" type equivalent to the current type
|
|
*hash< string, hash< DataProviderTypeOptionInfo > > | getSupportedOptions () |
| returns supported options on the field's type
|
|
abstract AbstractDataProviderType | getType () |
| returns the type of the field
|
|
string | getTypeName () |
| returns the type name
|
|
bool | hasType () |
| returns True if the field's type is not a wildcard type
|
|
bool | isAssignableFrom (AbstractDataProviderType t) |
| returns True if this field's type can be assigned from values of the argument type
|
|
bool | isAssignableFrom (Type t) |
| returns True if this field's type can be assigned from values of the argument type
|
|
bool | isList () |
| returns True if this field's type is a list
|
|
bool | isMandatory () |
| returns True if the field's type must have a value
|
|
bool | isMultiselect () |
| Returns True if the type is a list and the allowed values are allowed values of the list's type.
|
|
| replaceAttributes (*hash< auto > attr) |
| Replaces all custom attributes.
|
|
AbstractDataField | setAllowedValues (list< auto > allowed_values, *bool allowed_values_creatable) |
| Sets allowed values for enum types.
|
|
AbstractDataField | setAttributes (hash< auto > attr) |
| Sets custom attributes.
|
|
AbstractDataField | setDefaultValue (auto default_value) |
| sets the default value for the field
|
|
AbstractDataField | setElementAllowedValues (list< auto > element_allowed_values, *bool element_allowed_values_creatable) |
| Sets allowed values for enum types.
|
|
AbstractDataField | setOption (string opt, auto value) |
| sets the given option on the field's type
|
|
AbstractDataField | setOptions (hash< auto > options) |
| sets the given options on the field's type
|
|