toArrayJobDependency method
Implementation
ArrayJobDependency toArrayJobDependency() {
switch (this) {
case 'N_TO_N':
return ArrayJobDependency.nToN;
case 'SEQUENTIAL':
return ArrayJobDependency.sequential;
}
throw Exception('$this is not known in enum ArrayJobDependency');
}