toObjectStorageServerProtocol method

ObjectStorageServerProtocol toObjectStorageServerProtocol()

Implementation

ObjectStorageServerProtocol toObjectStorageServerProtocol() {
  switch (this) {
    case 'HTTPS':
      return ObjectStorageServerProtocol.https;
    case 'HTTP':
      return ObjectStorageServerProtocol.http;
  }
  throw Exception('$this is not known in enum ObjectStorageServerProtocol');
}