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 IS_DO_BRANCH:
return this.is_do_branch;
case CONDITION_NODE_ID:
return this.condition_node_id;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}