toEac3PhaseControl method
Implementation
Eac3PhaseControl toEac3PhaseControl() {
switch (this) {
case 'SHIFT_90_DEGREES':
return Eac3PhaseControl.shift_90Degrees;
case 'NO_SHIFT':
return Eac3PhaseControl.noShift;
}
throw Exception('$this is not known in enum Eac3PhaseControl');
}