toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case QualificationStatus.granted:
      return 'Granted';
    case QualificationStatus.revoked:
      return 'Revoked';
  }
}