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 TTL_DURATION:
return this.ttl_duration;
case TTL_COL:
return this.ttl_col;
case COMMENT:
return this.comment;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}