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 SPACE_ID:
return this.space_id;
case PARTS:
return this.parts;
case PROP_NAMES:
return this.prop_names;
case IF_NOT_EXISTS:
return this.if_not_exists;
case TERM:
return this.term;
case EDGE_VERSION:
return this.edge_version;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}