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 SPACE_ID:
      return this.space_id;
    case TAG_ID:
      return this.tag_id;
    case EDGE_TYPE:
      return this.edge_type;
    case INDEX_ID:
      return this.index_id;
    case CLUSTER_ID:
      return this.cluster_id;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}