toValue method
Implementation
String toValue() {
switch (this) {
case GlobalTableStatus.creating:
return 'CREATING';
case GlobalTableStatus.active:
return 'ACTIVE';
case GlobalTableStatus.deleting:
return 'DELETING';
case GlobalTableStatus.updating:
return 'UPDATING';
}
}