Class: ProtocolBuffers::Field::Sfixed32Field

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

Methods inherited from ProtocolBuffers::Field

#add_methods_to, #check_valid, #check_value, create, #deserialize, #initialize, #inspect_value, #repeated?, #serialize

Instance Method Details

#maxObject



391
392
393
# File 'lib/protocol_buffers/runtime/field.rb', line 391

def max
  (1 << 31) - 1
end

#minObject



387
388
389
# File 'lib/protocol_buffers/runtime/field.rb', line 387

def min
  -(1 << 31)
end

#pack_codeObject



383
384
385
# File 'lib/protocol_buffers/runtime/field.rb', line 383

def pack_code
  'l'
end

#valid_type?(value) ⇒ Boolean

Returns:

  • (Boolean)


395
396
397
# File 'lib/protocol_buffers/runtime/field.rb', line 395

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