toCertificateType method
Implementation
CertificateType toCertificateType() {
switch (this) {
case 'ClientCertAuth':
return CertificateType.clientCertAuth;
case 'ClientLDAPS':
return CertificateType.clientLDAPS;
}
throw Exception('$this is not known in enum CertificateType');
}