toRetryBuildBatchType method
Implementation
RetryBuildBatchType toRetryBuildBatchType() {
switch (this) {
case 'RETRY_ALL_BUILDS':
return RetryBuildBatchType.retryAllBuilds;
case 'RETRY_FAILED_BUILDS':
return RetryBuildBatchType.retryFailedBuilds;
}
throw Exception('$this is not known in enum RetryBuildBatchType');
}