Class: Metadata::RowItem

Inherits:
Object
  • Object
show all
Defined in:
lib/tablestore/metadata.rb

Instance Method Summary collapse

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

#conditionObject



161
162
163
# File 'lib/tablestore/metadata.rb', line 161

def condition
  @condition
end

#return_typeObject



169
170
171
# File 'lib/tablestore/metadata.rb', line 169

def return_type
  @return_type
end

#rowObject



165
166
167
# File 'lib/tablestore/metadata.rb', line 165

def row
  @row
end

#typeObject



157
158
159
# File 'lib/tablestore/metadata.rb', line 157

def type
  @type
end