Module: ExcelXml::Field
- Defined in:
- lib/excelxml/worksheet.rb
Instance Method Summary collapse
Instance Method Details
#content? ⇒ Boolean
90 91 92 |
# File 'lib/excelxml/worksheet.rb', line 90 def content? return (self.is_a?(String) and !self.empty?) end |
#fixnum? ⇒ Boolean
85 86 87 88 89 |
# File 'lib/excelxml/worksheet.rb', line 85 def fixnum? return Integer(self) rescue return false end |
#string? ⇒ Boolean
93 94 95 |
# File 'lib/excelxml/worksheet.rb', line 93 def string? return (self.content? and !self.fixnum?) end |