toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CostCategoryStatus.processing:
      return 'PROCESSING';
    case CostCategoryStatus.applied:
      return 'APPLIED';
  }
}