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 SRC:
return this.src;
case EDGE_TYPE:
return this.edge_type;
case RANKING:
return this.ranking;
case DST:
return this.dst;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}