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 SPACE_ID:
return this.space_id;
case PARTS:
return this.parts;
case PROP_NAMES:
return this.prop_names;
case IF_NOT_EXISTS:
return this.if_not_exists;
case IGNORE_EXISTED_INDEX:
return this.ignore_existed_index;
case COMMON:
return this.common;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}