toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ChangeType.create:
      return 'CREATE';
    case ChangeType.update:
      return 'UPDATE';
    case ChangeType.delete:
      return 'DELETE';
  }
}