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 ALIAS:
return this.alias;
case PROP:
return this.prop;
case STAT:
return this.stat;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}