Method: AsposeWordsCloud::CompareOptions#==

Defined in:
lib/aspose_words_cloud/models/compare_options.rb

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/aspose_words_cloud/models/compare_options.rb', line 191

def ==(other)
  return true if self.equal?(other)
  self.class == other.class &&
      accept_all_revisions_before_comparison == other.accept_all_revisions_before_comparison &&
      ignore_case_changes == other.ignore_case_changes &&
      ignore_comments == other.ignore_comments &&
      ignore_fields == other.ignore_fields &&
      ignore_footnotes == other.ignore_footnotes &&
      ignore_formatting == other.ignore_formatting &&
      ignore_headers_and_footers == other.ignore_headers_and_footers &&
      ignore_tables == other.ignore_tables &&
      ignore_textboxes == other.ignore_textboxes &&
      target == other.target
end