Class: AsposeWordsCloud::ListLevel
- Inherits:
-
Object
- Object
- AsposeWordsCloud::ListLevel
- Defined in:
- lib/aspose_words_cloud/models/list_level.rb
Overview
DTO container with a document list level.
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#alignment ⇒ Object
Gets or sets the justification of the actual number of the list item.
-
#font ⇒ Object
Gets or sets character formatting used for the list label.
-
#is_legal ⇒ Object
Gets or sets a value indicating whether the level turns all inherited numbers to Arabic, false if it preserves their number style.
-
#link ⇒ Object
Gets or sets the link to the document.
-
#linked_style ⇒ Object
Gets or sets the paragraph style that is linked to this list level.
-
#number_format ⇒ Object
Gets or sets the number format for the list level.
-
#number_position ⇒ Object
Gets or sets the position (in points) of the number or bullet for the list level.
-
#number_style ⇒ Object
Gets or sets the number style for this list level.
-
#restart_after_level ⇒ Object
Gets or sets the list level, that must appear before the specified list level restarts numbering.
-
#start_at ⇒ Object
Gets or sets the starting number for this list level.
-
#tab_position ⇒ Object
Gets or sets the tab position (in points) for the list level.
-
#text_position ⇒ Object
Gets or sets the position (in points) for the second line of wrapping text for the list level.
-
#trailing_character ⇒ Object
Gets or sets the character inserted after the number for the list level.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #collectFilesContent(resultFilesContent) ⇒ Object
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ListLevel
constructor
Initializes the object.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
- #validate ⇒ Object
Constructor Details
#initialize(attributes = {}) ⇒ ListLevel
Initializes the object
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 144 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.key?(:'Link') self.link = attributes[:'Link'] end if attributes.key?(:'StartAt') self.start_at = attributes[:'StartAt'] end if attributes.key?(:'NumberStyle') self.number_style = attributes[:'NumberStyle'] end if attributes.key?(:'NumberFormat') self.number_format = attributes[:'NumberFormat'] end if attributes.key?(:'Alignment') self.alignment = attributes[:'Alignment'] end if attributes.key?(:'IsLegal') self.is_legal = attributes[:'IsLegal'] end if attributes.key?(:'RestartAfterLevel') self.restart_after_level = attributes[:'RestartAfterLevel'] end if attributes.key?(:'TrailingCharacter') self.trailing_character = attributes[:'TrailingCharacter'] end if attributes.key?(:'Font') self.font = attributes[:'Font'] end if attributes.key?(:'TabPosition') self.tab_position = attributes[:'TabPosition'] end if attributes.key?(:'NumberPosition') self.number_position = attributes[:'NumberPosition'] end if attributes.key?(:'TextPosition') self.text_position = attributes[:'TextPosition'] end if attributes.key?(:'LinkedStyle') self.linked_style = attributes[:'LinkedStyle'] end end |
Instance Attribute Details
#alignment ⇒ Object
Gets or sets the justification of the actual number of the list item. The list label is justified relative to the Aspose.Words.Lists.ListLevel.NumberPosition property.
48 49 50 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 48 def alignment @alignment end |
#font ⇒ Object
Gets or sets character formatting used for the list label.
61 62 63 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 61 def font @font end |
#is_legal ⇒ Object
Gets or sets a value indicating whether the level turns all inherited numbers to Arabic, false if it preserves their number style.
51 52 53 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 51 def is_legal @is_legal end |
#link ⇒ Object
Gets or sets the link to the document.
33 34 35 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 33 def link @link end |
#linked_style ⇒ Object
Gets or sets the paragraph style that is linked to this list level. This property is null when the list level is not linked to a paragraph style. This property can be set to null.
80 81 82 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 80 def linked_style @linked_style end |
#number_format ⇒ Object
Gets or sets the number format for the list level. Among normal text characters, the string can contain placeholder characters \x0000 to \x0008 representing the numbers from the corresponding list levels. For example, the string “\x0000.\x0001)” will generate a list label that looks something like “1.5)”. The number “1” is the current number from the 1st list level, the number “5” is the current number from the 2nd list level. Null is not allowed, but an empty string meaning no number is valid.
44 45 46 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 44 def number_format @number_format end |
#number_position ⇒ Object
Gets or sets the position (in points) of the number or bullet for the list level. Aspose.Words.Lists.ListLevel.NumberPosition corresponds to LeftIndent plus FirstLineIndent of the paragraph. Aspose.Words.Lists.ListLevel.TextPosition Aspose.Words.Lists.ListLevel.TabPosition.
70 71 72 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 70 def number_position @number_position end |
#number_style ⇒ Object
Gets or sets the number style for this list level.
40 41 42 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 40 def number_style @number_style end |
#restart_after_level ⇒ Object
Gets or sets the list level, that must appear before the specified list level restarts numbering. The value of -1 means the numbering will continue.
55 56 57 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 55 def restart_after_level @restart_after_level end |
#start_at ⇒ Object
Gets or sets the starting number for this list level. Default value is 1.
37 38 39 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 37 def start_at @start_at end |
#tab_position ⇒ Object
Gets or sets the tab position (in points) for the list level. Has effect only when Aspose.Words.Lists.ListLevel.TrailingCharacter is a tab. Aspose.Words.Lists.ListLevel.NumberPosition Aspose.Words.Lists.ListLevel.TextPosition.
66 67 68 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 66 def tab_position @tab_position end |
#text_position ⇒ Object
Gets or sets the position (in points) for the second line of wrapping text for the list level. Aspose.Words.Lists.ListLevel.TextPosition corresponds to LeftIndent of the paragraph. Aspose.Words.Lists.ListLevel.NumberPosition Aspose.Words.Lists.ListLevel.TabPosition.
75 76 77 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 75 def text_position @text_position end |
#trailing_character ⇒ Object
Gets or sets the character inserted after the number for the list level.
58 59 60 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 58 def trailing_character @trailing_character end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 105 def self.attribute_map { :'link' => :'Link', :'start_at' => :'StartAt', :'number_style' => :'NumberStyle', :'number_format' => :'NumberFormat', :'alignment' => :'Alignment', :'is_legal' => :'IsLegal', :'restart_after_level' => :'RestartAfterLevel', :'trailing_character' => :'TrailingCharacter', :'font' => :'Font', :'tab_position' => :'TabPosition', :'number_position' => :'NumberPosition', :'text_position' => :'TextPosition', :'linked_style' => :'LinkedStyle' } end |
.swagger_types ⇒ Object
Attribute type mapping.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 124 def self.swagger_types { :'link' => :'WordsApiLink', :'start_at' => :'Integer', :'number_style' => :'String', :'number_format' => :'String', :'alignment' => :'String', :'is_legal' => :'BOOLEAN', :'restart_after_level' => :'Integer', :'trailing_character' => :'String', :'font' => :'Font', :'tab_position' => :'Float', :'number_position' => :'Float', :'text_position' => :'Float', :'linked_style' => :'Style' } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 261 def ==(other) return true if self.equal?(other) self.class == other.class && link == other.link && start_at == other.start_at && number_style == other.number_style && number_format == other.number_format && alignment == other.alignment && is_legal == other.is_legal && restart_after_level == other.restart_after_level && trailing_character == other.trailing_character && font == other.font && tab_position == other.tab_position && number_position == other.number_position && text_position == other.text_position && linked_style == other.linked_style end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 316 def _deserialize(type, value) case type.to_sym when :DateTime Time.at(/\d/.match(value)[0].to_f).to_datetime when :Date Time.at(/\d/.match(value)[0].to_f).to_date when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model if value[:'$type'] type = value[:'$type'][0..-4] end temp_model = AsposeWordsCloud.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
387 388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 387 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 294 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#collectFilesContent(resultFilesContent) ⇒ Object
401 402 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 401 def collectFilesContent(resultFilesContent) end |
#eql?(other) ⇒ Boolean
281 282 283 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 281 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
287 288 289 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 287 def hash [link, start_at, number_style, number_format, alignment, is_legal, restart_after_level, trailing_character, font, tab_position, number_position, text_position, linked_style].hash end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
367 368 369 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 367 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
373 374 375 376 377 378 379 380 381 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 373 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
361 362 363 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 361 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
205 206 207 208 209 210 211 212 213 214 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 205 def valid? number_style_validator = EnumAttributeValidator.new('String', ["Arabic", "UppercaseRoman", "LowercaseRoman", "UppercaseLetter", "LowercaseLetter", "Ordinal", "Number", "OrdinalText", "Hex", "ChicagoManual", "Kanji", "KanjiDigit", "AiueoHalfWidth", "IrohaHalfWidth", "ArabicFullWidth", "ArabicHalfWidth", "KanjiTraditional", "KanjiTraditional2", "NumberInCircle", "DecimalFullWidth", "Aiueo", "Iroha", "LeadingZero", "Bullet", "Ganada", "Chosung", "GB1", "GB2", "GB3", "GB4", "Zodiac1", "Zodiac2", "Zodiac3", "TradChinNum1", "TradChinNum2", "TradChinNum3", "TradChinNum4", "SimpChinNum1", "SimpChinNum2", "SimpChinNum3", "SimpChinNum4", "HanjaRead", "HanjaReadDigit", "Hangul", "Hanja", "Hebrew1", "Arabic1", "Hebrew2", "Arabic2", "HindiLetter1", "HindiLetter2", "HindiArabic", "HindiCardinalText", "ThaiLetter", "ThaiArabic", "ThaiCardinalText", "VietCardinalText", "NumberInDash", "LowercaseRussian", "UppercaseRussian", "None", "Custom"]) return false unless number_style_validator.valid?(@number_style) alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right"]) return false unless alignment_validator.valid?(@alignment) trailing_character_validator = EnumAttributeValidator.new('String', ["Tab", "Space", "Nothing"]) return false unless trailing_character_validator.valid?(@trailing_character) return true end |
#validate ⇒ Object
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
# File 'lib/aspose_words_cloud/models/list_level.rb', line 404 def validate() raise ArgumentError, 'Property start_at in ListLevel is required.' if self.start_at.nil? raise ArgumentError, 'Property number_style in ListLevel is required.' if self.number_style.nil? raise ArgumentError, 'Property alignment in ListLevel is required.' if self.alignment.nil? raise ArgumentError, 'Property is_legal in ListLevel is required.' if self.is_legal.nil? raise ArgumentError, 'Property restart_after_level in ListLevel is required.' if self.restart_after_level.nil? raise ArgumentError, 'Property trailing_character in ListLevel is required.' if self.trailing_character.nil? raise ArgumentError, 'Property tab_position in ListLevel is required.' if self.tab_position.nil? raise ArgumentError, 'Property number_position in ListLevel is required.' if self.number_position.nil? raise ArgumentError, 'Property text_position in ListLevel is required.' if self.text_position.nil? unless self.link.nil? self.link.validate end unless self.font.nil? self.font.validate end unless self.linked_style.nil? self.linked_style.validate end end |