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 PART_ID:
return this.part_id;
case LEADER:
return this.leader;
case PEERS:
return this.peers;
case LOSTS:
return this.losts;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}