Class: ProtocolBuffers::Field::Fixed32Field

Inherits:
NumericField show all
Includes:
WireFormats::FIXED32
Defined in:
lib/protocol_buffers/runtime/field.rb

Instance Attribute Summary

Attributes inherited from ProtocolBuffers::Field

#name, #otype, #tag

Instance Method Summary collapse

Methods included from WireFormats::FIXED32

#deserialize, #serialize, #wire_type

Methods inherited from NumericField

#check_value, #default_value, #min

Methods inherited from ProtocolBuffers::Field

#add_methods_to, #add_reader_to, #add_writer_to, #check_valid, #check_value, create, #deserialize, #initialize, #inspect_value, #packed?, #repeated?, #serialize, #text_format

Instance Method Details

#maxObject



418
419
420
# File 'lib/protocol_buffers/runtime/field.rb', line 418

def max
  0xFFFFFFFF
end

#pack_codeObject



414
415
416
# File 'lib/protocol_buffers/runtime/field.rb', line 414

def pack_code
  'L'
end

#valid_type?(value) ⇒ Boolean

Returns:

  • (Boolean)


422
423
424
# File 'lib/protocol_buffers/runtime/field.rb', line 422

def valid_type?(value)
  value.is_a?(Integer)
end