Class: DataMapper::Property::Integer

Inherits:
Numeric show all
Defined in:
lib/dm-core/property/integer.rb

Direct Known Subclasses

Serial

Constant Summary

Constants inherited from Numeric

Numeric::DEFAULT_NUMERIC_MAX, Numeric::DEFAULT_NUMERIC_MIN, Numeric::DEFAULT_PRECISION

Constants inherited from DataMapper::Property

INVALID_NAMES, OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from Numeric

#max, #min, #precision, #scale

Attributes inherited from DataMapper::Property

#allow_blank, #allow_nil, #default, #index, #instance_variable_name, #model, #name, #options, #primitive, #reader_visibility, #repository_name, #required, #unique_index, #writer_visibility

Instance Method Summary collapse

Methods included from Typecast::Numeric

#typecast_to_numeric

Methods included from PassThroughLoadDump

#dump, #load

Methods inherited from Object

#dump, #load, #to_child_key

Methods inherited from DataMapper::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #assert_valid_options, #bind, demodulized_names, descendants, determine_class, #determine_visibility, #field, find_class, #get, #get!, inherited, #inspect, #key?, #lazy?, #lazy_load, #lazy_load_properties, #loaded?, nullable, options, #primitive?, #properties, #required?, #serial?, #set, #set!, #typecast, #unique?, #valid?

Methods included from Chainable

#chainable, #extendable

Methods included from Equalizer

#equalize

Methods included from Deprecate

#deprecate

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Constructor Details

#initialize(model, name, options = {}) ⇒ Integer (protected)

Returns a new instance of Integer.



11
12
13
14
15
16
# File 'lib/dm-core/property/integer.rb', line 11

def initialize(model, name, options = {})
  if options.key?(:serial) && !kind_of?(Serial)
    raise "Integer #{name} with explicit :serial option is deprecated, use Serial instead (#{caller[2]})"
  end
  super
end

Instance Method Details

#typecast_to_primitive(value) ⇒ Integer (protected)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Typecast a value to an Integer

Parameters:

  • value (#to_str, #to_i)

    value to typecast

Returns:

  • (Integer)

    Integer constructed from value



27
28
29
# File 'lib/dm-core/property/integer.rb', line 27

def typecast_to_primitive(value)
  typecast_to_numeric(value, :to_i)
end