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 INDEX_NAME:
return this.index_name;
case EDGE_NAME:
return this.edge_name;
case FIELDS:
return this.fields;
case IF_NOT_EXISTS:
return this.if_not_exists;
case COMMENT:
return this.comment;
case INDEX_PARAMS:
return this.index_params;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}