setFieldValue method
Set a field's value by fieldId
. Primitive types must be "boxed" in the
appropriate object wrapper type.
Implementation
setFieldValue(int fieldID, Object value) {
switch (fieldID) {
case TAG_ID:
if (value == null) {
unsetTag_id();
} else {
this.tag_id = value as int;
}
break;
case EDGE_TYPE:
if (value == null) {
unsetEdge_type();
} else {
this.edge_type = value as int;
}
break;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}