toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ConflictHandlerType.optimisticConcurrency:
      return 'OPTIMISTIC_CONCURRENCY';
    case ConflictHandlerType.lambda:
      return 'LAMBDA';
    case ConflictHandlerType.automerge:
      return 'AUTOMERGE';
    case ConflictHandlerType.none:
      return 'NONE';
  }
}