getFieldValue method
Get a field's value by fieldId
. Primitive types will be wrapped in the
appropriate "boxed" types.
Implementation
getFieldValue(int fieldID) {
switch (fieldID) {
case INDEX_ID:
return this.index_id;
case FILTER:
return this.filter;
case COLUMN_HINTS:
return this.column_hints;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}