getStatus function
- int statusValue
Implementation
getStatus(int statusValue) {
if (statusValue == 0) {
return "fixed";
} else if (statusValue == 1) {
return "unfixed";
}
return "Unknown";
}
getStatus(int statusValue) {
if (statusValue == 0) {
return "fixed";
} else if (statusValue == 1) {
return "unfixed";
}
return "Unknown";
}