toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case BatchStrategy.multiRecord:
      return 'MultiRecord';
    case BatchStrategy.singleRecord:
      return 'SingleRecord';
  }
}