Class: OpenXml::Properties::IntegerProperty

Inherits:
ValueProperty show all
Defined in:
lib/openxml/properties/integer_property.rb

Direct Known Subclasses

PositiveIntegerProperty

Instance Attribute Summary

Attributes inherited from ValueProperty

#value

Attributes inherited from BaseProperty

#value

Instance Method Summary collapse

Methods inherited from ValueProperty

#initialize, #render?, #to_xml

Methods inherited from BaseProperty

#default_name, #default_tag, #initialize, #name, name, namespace, #namespace, #render?, tag, #tag, tag_is_one_of, #validate_tag

Constructor Details

This class inherits a constructor from OpenXml::Properties::ValueProperty

Instance Method Details

#invalid_messageObject



9
10
11
# File 'lib/openxml/properties/integer_property.rb', line 9

def invalid_message
  "Invalid #{name}: must be an integer"
end

#valid?Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/openxml/properties/integer_property.rb', line 5

def valid?
  value.is_a? Integer
end