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 USER:
return this.user;
case GRAPH_ADDR:
return this.graph_addr;
case CLIENT_IP:
return this.client_ip;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}