toWorkspaceImageIngestionProcess method

WorkspaceImageIngestionProcess toWorkspaceImageIngestionProcess()

Implementation

WorkspaceImageIngestionProcess toWorkspaceImageIngestionProcess() {
  switch (this) {
    case 'BYOL_REGULAR':
      return WorkspaceImageIngestionProcess.byolRegular;
    case 'BYOL_GRAPHICS':
      return WorkspaceImageIngestionProcess.byolGraphics;
    case 'BYOL_GRAPHICSPRO':
      return WorkspaceImageIngestionProcess.byolGraphicspro;
    case 'BYOL_REGULAR_WSP':
      return WorkspaceImageIngestionProcess.byolRegularWsp;
  }
  throw Exception(
      '$this is not known in enum WorkspaceImageIngestionProcess');
}