toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case MergeStrategy.overwriteLatest:
      return 'OVERWRITE_LATEST';
    case MergeStrategy.failOnConflict:
      return 'FAIL_ON_CONFLICT';
  }
}