toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case WarmupStatus.inProgress:
      return 'IN_PROGRESS';
    case WarmupStatus.done:
      return 'DONE';
  }
}