isSet method
Check if a field is currently set or unset, using the fieldId
.
Implementation
bool isSet(int fieldID) {
switch (fieldID) {
case JOB_TYPE:
return isSetJob_type();
case JOB_ID:
return isSetJob_id();
case TASK_ID:
return isSetTask_id();
case PARA:
return isSetPara();
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}