toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case TargetSelection.continuous:
      return 'CONTINUOUS';
    case TargetSelection.snapshot:
      return 'SNAPSHOT';
  }
}