Class: Metadata::RowItem

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#conditionObject

Returns the value of attribute condition.



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

def condition
  @condition
end

#return_typeObject

Returns the value of attribute return_type.



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

def return_type
  @return_type
end

#rowObject

Returns the value of attribute row.



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

def row
  @row
end

#typeObject

Returns the value of attribute type.



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

def type
  @type
end