toDeploymentType method

DeploymentType toDeploymentType()

Implementation

DeploymentType toDeploymentType() {
  switch (this) {
    case 'NewDeployment':
      return DeploymentType.newDeployment;
    case 'Redeployment':
      return DeploymentType.redeployment;
    case 'ResetDeployment':
      return DeploymentType.resetDeployment;
    case 'ForceResetDeployment':
      return DeploymentType.forceResetDeployment;
  }
  throw Exception('$this is not known in enum DeploymentType');
}