getFieldValue method

dynamic getFieldValue(
  1. int fieldID
)
override

Get a field's value by fieldId. Primitive types will be wrapped in the appropriate "boxed" types.

Implementation

getFieldValue(int fieldID) {
  switch (fieldID) {
    case SESSION_ID:
      return this.session_id;
    case CREATE_TIME:
      return this.create_time;
    case UPDATE_TIME:
      return this.update_time;
    case USER_NAME:
      return this.user_name;
    case SPACE_NAME:
      return this.space_name;
    case GRAPH_ADDR:
      return this.graph_addr;
    case TIMEZONE:
      return this.timezone;
    case CLIENT_IP:
      return this.client_ip;
    case CONFIGS:
      return this.configs;
    case QUERIES:
      return this.queries;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}