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