toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ReplacementTypeEnum.keepBase:
      return 'KEEP_BASE';
    case ReplacementTypeEnum.keepSource:
      return 'KEEP_SOURCE';
    case ReplacementTypeEnum.keepDestination:
      return 'KEEP_DESTINATION';
    case ReplacementTypeEnum.useNewContent:
      return 'USE_NEW_CONTENT';
  }
}