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 CODE:
return this.code;
case LEADER:
return this.leader;
case HOSTS:
return this.hosts;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}