isSet method
Check if a field is currently set or unset, using the fieldId
.
Implementation
bool isSet(int fieldID) {
switch (fieldID) {
case SPACE_ID:
return isSetSpace_id();
case PARTS:
return isSetParts();
case PROP_NAMES:
return isSetProp_names();
case IF_NOT_EXISTS:
return isSetIf_not_exists();
case TERM:
return isSetTerm();
case EDGE_VERSION:
return isSetEdge_version();
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}