Class: Metadata::RowItem
- Inherits:
-
Object
- Object
- Metadata::RowItem
- Defined in:
- lib/tablestore/metadata.rb
Instance Method Summary collapse
- #condition ⇒ Object
-
#initialize(row_type, row, condition, return_type = nil) ⇒ RowItem
constructor
A new instance of RowItem.
- #return_type ⇒ Object
- #row ⇒ Object
- #type ⇒ Object
Constructor Details
#initialize(row_type, row, condition, return_type = nil) ⇒ RowItem
Returns a new instance of RowItem.
150 151 152 153 154 155 |
# File 'lib/tablestore/metadata.rb', line 150 def initialize(row_type, row, condition, return_type = nil) @type = row_type @condition = condition @row = row @return_type = return_type end |
Instance Method Details
#condition ⇒ Object
161 162 163 |
# File 'lib/tablestore/metadata.rb', line 161 def condition @condition end |
#return_type ⇒ Object
169 170 171 |
# File 'lib/tablestore/metadata.rb', line 169 def return_type @return_type end |
#row ⇒ Object
165 166 167 |
# File 'lib/tablestore/metadata.rb', line 165 def row @row end |
#type ⇒ Object
157 158 159 |
# File 'lib/tablestore/metadata.rb', line 157 def type @type end |