toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case InputStartingPosition.now:
      return 'NOW';
    case InputStartingPosition.trimHorizon:
      return 'TRIM_HORIZON';
    case InputStartingPosition.lastStoppedPoint:
      return 'LAST_STOPPED_POINT';
  }
}