toActionCode method

ActionCode toActionCode()

Implementation

ActionCode toActionCode() {
  switch (this) {
    case 'ArchiveRetrieval':
      return ActionCode.archiveRetrieval;
    case 'InventoryRetrieval':
      return ActionCode.inventoryRetrieval;
    case 'Select':
      return ActionCode.select;
  }
  throw Exception('$this is not known in enum ActionCode');
}