Class: GroongaDelta::Mapping::SourceTable
- Inherits:
- 
      Object
      
        - Object
- GroongaDelta::Mapping::SourceTable
 
- Defined in:
- lib/groonga-delta/mapping.rb
Instance Attribute Summary collapse
- 
  
    
      #groonga_table  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute groonga_table. 
- 
  
    
      #name  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute name. 
- 
  
    
      #source_column_names  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute source_column_names. 
- 
  
    
      #source_filter  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute source_filter. 
Instance Method Summary collapse
- 
  
    
      #initialize(name, source_column_names, source_filter, groonga_table)  ⇒ SourceTable 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SourceTable. 
Constructor Details
#initialize(name, source_column_names, source_filter, groonga_table) ⇒ SourceTable
Returns a new instance of SourceTable.
| 126 127 128 129 130 131 | # File 'lib/groonga-delta/mapping.rb', line 126 def initialize(name, source_column_names, source_filter, groonga_table) @name = name @source_column_names = source_column_names @source_filter = source_filter @groonga_table = groonga_table end | 
Instance Attribute Details
#groonga_table ⇒ Object (readonly)
Returns the value of attribute groonga_table.
| 125 126 127 | # File 'lib/groonga-delta/mapping.rb', line 125 def groonga_table @groonga_table end | 
#name ⇒ Object (readonly)
Returns the value of attribute name.
| 122 123 124 | # File 'lib/groonga-delta/mapping.rb', line 122 def name @name end | 
#source_column_names ⇒ Object (readonly)
Returns the value of attribute source_column_names.
| 123 124 125 | # File 'lib/groonga-delta/mapping.rb', line 123 def source_column_names @source_column_names end | 
#source_filter ⇒ Object (readonly)
Returns the value of attribute source_filter.
| 124 125 126 | # File 'lib/groonga-delta/mapping.rb', line 124 def source_filter @source_filter end |