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