Class: CLByteArray
- Defined in:
 - lib/types/cl_byte_array.rb
 
Instance Method Summary collapse
- #get_cl_type ⇒ Object
 - #get_value ⇒ Object
 - 
  
    
      #initialize(value = nil)  ⇒ CLByteArray 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CLByteArray.
 
Methods included from CLValueBytesParsers::CLByteArrayBytesParser
Methods inherited from CLValue
Constructor Details
#initialize(value = nil) ⇒ CLByteArray
Returns a new instance of CLByteArray.
      10 11 12 13  | 
    
      # File 'lib/types/cl_byte_array.rb', line 10 def initialize(value = nil) super @value = value end  | 
  
Instance Method Details
#get_cl_type ⇒ Object
      15 16 17 18  | 
    
      # File 'lib/types/cl_byte_array.rb', line 15 def get_cl_type @cl_type = CLByteArrayType.new @cl_type.to_string end  | 
  
#get_value ⇒ Object
      20 21 22  | 
    
      # File 'lib/types/cl_byte_array.rb', line 20 def get_value @value end  |