Class: Applocale::ParseXLSXModule::RowInfo
- Inherits:
-
Object
- Object
- Applocale::ParseXLSXModule::RowInfo
- Defined in:
- lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb
Instance Attribute Summary collapse
-
#content_dict ⇒ Object
Returns the value of attribute content_dict.
-
#key_str ⇒ Object
Returns the value of attribute key_str.
-
#rowno ⇒ Object
Returns the value of attribute rowno.
-
#sheetname ⇒ Object
Returns the value of attribute sheetname.
Instance Method Summary collapse
-
#initialize(sheetname = nil, rowno = nil, key_str = nil) ⇒ RowInfo
constructor
A new instance of RowInfo.
- #to_s ⇒ Object
Constructor Details
#initialize(sheetname = nil, rowno = nil, key_str = nil) ⇒ RowInfo
Returns a new instance of RowInfo.
62 63 64 65 66 67 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 62 def initialize(sheetname = nil, rowno = nil, key_str = nil) self.sheetname = sheetname self.rowno = rowno self.key_str = key_str self.content_dict = {} end |
Instance Attribute Details
#content_dict ⇒ Object
Returns the value of attribute content_dict.
60 61 62 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 60 def content_dict @content_dict end |
#key_str ⇒ Object
Returns the value of attribute key_str.
60 61 62 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 60 def key_str @key_str end |
#rowno ⇒ Object
Returns the value of attribute rowno.
60 61 62 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 60 def rowno @rowno end |
#sheetname ⇒ Object
Returns the value of attribute sheetname.
60 61 62 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 60 def sheetname @sheetname end |
Instance Method Details
#to_s ⇒ Object
69 70 71 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 69 def to_s "sheetname = #{sheetname}, rowno = #{rowno}, key_str = #{key_str}, content_dict = #{content_dict}" end |