Class: Metadata::RowItem
- Inherits:
-
Object
- Object
- Metadata::RowItem
- Defined in:
- lib/tablestore/metadata.rb
Instance Attribute Summary collapse
-
#condition ⇒ Object
Returns the value of attribute condition.
-
#return_type ⇒ Object
Returns the value of attribute return_type.
-
#row ⇒ Object
Returns the value of attribute row.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(row_type, row, condition, return_type = nil) ⇒ RowItem
constructor
A new instance of RowItem.
Constructor Details
#initialize(row_type, row, condition, return_type = nil) ⇒ RowItem
Returns a new instance of RowItem.
167 168 169 170 171 172 |
# File 'lib/tablestore/metadata.rb', line 167 def initialize(row_type, row, condition, return_type = nil) self.type = row_type self.condition = condition self.row = row self.return_type = return_type end |
Instance Attribute Details
#condition ⇒ Object
Returns the value of attribute condition.
166 167 168 |
# File 'lib/tablestore/metadata.rb', line 166 def condition @condition end |
#return_type ⇒ Object
Returns the value of attribute return_type.
166 167 168 |
# File 'lib/tablestore/metadata.rb', line 166 def return_type @return_type end |
#row ⇒ Object
Returns the value of attribute row.
166 167 168 |
# File 'lib/tablestore/metadata.rb', line 166 def row @row end |
#type ⇒ Object
Returns the value of attribute type.
166 167 168 |
# File 'lib/tablestore/metadata.rb', line 166 def type @type end |