toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case OperationType.insert:
      return 'INSERT';
    case OperationType.modify:
      return 'MODIFY';
    case OperationType.remove:
      return 'REMOVE';
  }
}