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 PART_ID:
return this.part_id;
case EDGE_KEY:
return this.edge_key;
case UPDATED_PROPS:
return this.updated_props;
case INSERTABLE:
return this.insertable;
case RETURN_PROPS:
return this.return_props;
case CONDITION:
return this.condition;
case COMMON:
return this.common;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}