toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ChangeAction.create:
      return 'CREATE';
    case ChangeAction.delete:
      return 'DELETE';
    case ChangeAction.upsert:
      return 'UPSERT';
  }
}