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 EDGE_NAME:
return this.edge_name;
case VERSION:
return this.version;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}