toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ChangeAction.insert:
      return 'INSERT';
    case ChangeAction.delete:
      return 'DELETE';
  }
}