Class: ActiveRemote::Serializers::Protobuf::Field
- Inherits:
- 
      Object
      
        - Object
- ActiveRemote::Serializers::Protobuf::Field
 
- Defined in:
- lib/active_remote/serializers/protobuf.rb
Instance Attribute Summary collapse
- 
  
    
      #field  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute field. 
- 
  
    
      #value  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute value. 
Class Method Summary collapse
- 
  
    
      .from_attribute(field, value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Class methods. 
Instance Method Summary collapse
- 
  
    
      #from_attribute  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Instance methods. 
- 
  
    
      #initialize(field, value)  ⇒ Field 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Constructor!. 
Constructor Details
#initialize(field, value) ⇒ Field
Constructor!
| 77 78 79 80 | # File 'lib/active_remote/serializers/protobuf.rb', line 77 def initialize(field, value) @field = field @value = value end | 
Instance Attribute Details
#field ⇒ Object (readonly)
Returns the value of attribute field.
| 72 73 74 | # File 'lib/active_remote/serializers/protobuf.rb', line 72 def field @field end | 
#value ⇒ Object (readonly)
Returns the value of attribute value.
| 72 73 74 | # File 'lib/active_remote/serializers/protobuf.rb', line 72 def value @value end | 
Class Method Details
.from_attribute(field, value) ⇒ Object
Class methods
| 85 86 87 88 | # File 'lib/active_remote/serializers/protobuf.rb', line 85 def self.from_attribute(field, value) field = self.new(field, value) field.from_attribute end | 
Instance Method Details
#from_attribute ⇒ Object
Instance methods
| 93 94 95 96 97 98 99 100 101 102 103 104 | # File 'lib/active_remote/serializers/protobuf.rb', line 93 def from_attribute case when field. then when field. then when field.repeated? then repeated_value.map { |value| cast(value) } else cast_value end end |