toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Status.ignore:
      return 'IGNORE';
    case Status.resolved:
      return 'RESOLVED';
    case Status.pending:
      return 'PENDING';
  }
}