toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case KeyUsageType.signVerify:
      return 'SIGN_VERIFY';
    case KeyUsageType.encryptDecrypt:
      return 'ENCRYPT_DECRYPT';
  }
}