Sha256: 0105ac116442cee77cdbbc039d7fe988b13246cccd394418b553725451e2f13c

Contents?: true

Size: 684 Bytes

Versions: 2

Compression:

Stored size: 684 Bytes

Contents

require 'date'

module AsposeWordsCloud

  class ReportBuildOptions
    
    NONE = "None".freeze
    
    ALLOWMISSINGMEMBERS = "AllowMissingMembers".freeze
    
    REMOVEEMPTYPARAGRAPHS = "RemoveEmptyParagraphs".freeze
    
    INLINEERRORMESSAGES = "InlineErrorMessages".freeze

    # Builds the enum from string
    # @param [String] The enum value in the form of the string
    # @return [String] The enum value
    def build_from_hash(value)
      constantValues = ReportBuildOptions.constants.select{|c| ReportBuildOptions::const_get(c) == value}
      raise "Invalid ENUM value #{value} for class #ReportBuildOptions" if constantValues.empty?
      value
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aspose_words_cloud-20.6.0 lib/aspose_words_cloud/models/report_build_options.rb
aspose_words_cloud-20.5.0 lib/aspose_words_cloud/models/report_build_options.rb