toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ApplicationStatus.notStarted:
      return 'NOT_STARTED';
    case ApplicationStatus.inProgress:
      return 'IN_PROGRESS';
    case ApplicationStatus.completed:
      return 'COMPLETED';
  }
}