Class: OdpsDatahub::OdpsTableColumn
- Inherits:
- 
      Object
      
        - Object
- OdpsDatahub::OdpsTableColumn
 
- Defined in:
- lib/fluent/plugin/odps/odps_table_schema.rb
Instance Attribute Summary collapse
- 
  
    
      #mIdx  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute mIdx. 
- 
  
    
      #mName  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute mName. 
- 
  
    
      #mType  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute mType. 
Instance Method Summary collapse
- 
  
    
      #initialize(name, type, idx)  ⇒ OdpsTableColumn 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OdpsTableColumn. 
Constructor Details
#initialize(name, type, idx) ⇒ OdpsTableColumn
Returns a new instance of OdpsTableColumn.
| 28 29 30 31 32 | # File 'lib/fluent/plugin/odps/odps_table_schema.rb', line 28 def initialize(name, type, idx) @mName = name @mType = type @mIdx = idx end | 
Instance Attribute Details
#mIdx ⇒ Object (readonly)
Returns the value of attribute mIdx.
| 27 28 29 | # File 'lib/fluent/plugin/odps/odps_table_schema.rb', line 27 def mIdx @mIdx end | 
#mName ⇒ Object (readonly)
Returns the value of attribute mName.
| 27 28 29 | # File 'lib/fluent/plugin/odps/odps_table_schema.rb', line 27 def mName @mName end | 
#mType ⇒ Object (readonly)
Returns the value of attribute mType.
| 27 28 29 | # File 'lib/fluent/plugin/odps/odps_table_schema.rb', line 27 def mType @mType end |