Inherits QoreObjectWrapper.
|
|
| AbstractDataField (QoreObject obj) throws Throwable |
| | creates the object as a wrapper for the Qore object
|
| |
|
boolean | isAssignableFrom (AbstractDataProviderType t) throws Throwable |
| | returns True if this field's type can be assigned from values of the argument type
|
| |
|
boolean | isAssignableFrom (Type t) throws Throwable |
| | returns True if this field's type can be assigned from values of the argument type
|
| |
|
boolean | isList () throws Throwable |
| | returns True if this field's type is a list
|
| |
|
boolean | isMandatory () throws Throwable |
| | returns True if the field's type must have a value
|
| |
|
Object | getOptionValue (String opt) throws Throwable |
| | returns the value of the given option on the field's type
|
| |
|
HashMap< String, Object > | getOptions () throws Throwable |
| | returns options set on the field's type
|
| |
|
HashMap< String, HashMap< String, Object > > | getSupportedOptions () throws Throwable |
| | returns supported options on the field's type
|
| |
| void | setOption (String opt, Object value) throws Throwable |
| | sets the given option on the field's type
|
| |
| void | setOptions (Map< String, Object > options) throws Throwable |
| | sets the given options on the field's type
|
| |
|
String | getTypeName () throws Throwable |
| | returns the type name
|
| |
|
void | setDefaultValue (Object default_value) throws Throwable |
| | sets the default value for the field
|
| |
|
Object | getDefaultValue () throws Throwable |
| | get default value, if any
|
| |
|
boolean | hasType () throws Throwable |
| | returns True if the field's type is not a wildcard type
|
| |
| Object | acceptsValue (Object value) throws Throwable |
| | returns the value if the value can be assigned to the type
|
| |
| HashMap< String, Object > | getInputInfo () throws Throwable |
| | returns information about the field as an input field
|
| |
|
HashMap< String, Object > | getInfo () throws Throwable |
| | returns information about the field
|
| |
| AbstractDataField | getSoftType () throws Throwable |
| | returns a field with a "soft" type equivalent to the current type
|
| |
|
String | getName () throws Throwable |
| | returns the name of the field
|
| |
|
String | getDescription () throws Throwable |
| | returns the description, if any
|
| |
|
AbstractDataProviderType | getType () throws Throwable |
| | returns the type of the field
|
| |
Java wrapper for the DataProvider::AbstractDataField class in Qore.
- Note
- Loads and initializes the Qore library and the jni module in static initialization if necessary
- Deprecated:
- Use dynamic imports instead:
import qoremod.DataProvider.AbstractDataField;