toLDAPSType method

LDAPSType toLDAPSType()

Implementation

LDAPSType toLDAPSType() {
  switch (this) {
    case 'Client':
      return LDAPSType.client;
  }
  throw Exception('$this is not known in enum LDAPSType');
}