toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CertificateType.imported:
      return 'IMPORTED';
    case CertificateType.amazonIssued:
      return 'AMAZON_ISSUED';
    case CertificateType.private:
      return 'PRIVATE';
  }
}