toEac3PhaseControl method

Eac3PhaseControl toEac3PhaseControl()

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');
}