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 UPDATE_EDGE_REQUEST:
return this.update_edge_request;
case TERM:
return this.term;
case EDGE_VERSION:
return this.edge_version;
case SPACE_ID:
return this.space_id;
case PARTS:
return this.parts;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}