toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StepCancellationOption.sendInterrupt:
      return 'SEND_INTERRUPT';
    case StepCancellationOption.terminateProcess:
      return 'TERMINATE_PROCESS';
  }
}