Class: ActiveModel::Type::Value
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
ActiveModel::Type::BigInteger, ActiveModel::Type::Binary, Boolean, ActiveModel::Type::Date, ActiveModel::Type::DateTime, ActiveModel::Type::Decimal, ActiveModel::Type::Float, ActiveModel::Type::ImmutableString, ActiveModel::Type::Integer, ActiveModel::Type::String, ActiveModel::Type::Time, ActiveRecord::Locking::LockingType, ActiveRecord::Type::Date, ActiveRecord::Type::DateTime, ActiveRecord::Type::DecimalWithoutScale, ActiveRecord::Type::Json, ActiveRecord::Type::Serialized, ActiveRecord::Type::Text, ActiveRecord::Type::Time, ActiveRecord::Type::UnsignedInteger, ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter, ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Array, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bit, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::BitVarying, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bytea, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Cidr, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Date, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Enum, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Hstore, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Inet, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Interval, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Jsonb, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::LegacyPoint, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Macaddr, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Money, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Oid, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Point, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Range, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::SpecializedString, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Uuid, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Vector, ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Xml
|
|
Inherits: | Object |
Defined in: | activemodel/lib/active_model/type/value.rb |
Class Method Summary
Instance Attribute Summary
- #limit readonly
- #precision readonly
- #scale readonly
Instance Method Summary
- #==(other) (also: #eql?)
- #assert_valid_value(_)
-
#cast(value)
::ActiveModel::Type
casts a value from user input (e.g. from a setter). -
#changed?(old_value, new_value, _new_value_before_type_cast) ⇒ Boolean
Determines whether a value has changed for dirty checking.
-
#changed_in_place?(raw_old_value, new_value) ⇒ Boolean
Determines whether the mutable value has been modified since it was read.
-
#deserialize(value)
(also: #serialize)
Converts a value from database input to the appropriate ruby type.
-
#eql?(other)
Alias for #==.
- #hash
-
#serializable?(value) ⇒ Boolean
Returns true if this type can convert
value
to a type that is usable by the database. -
#serialize(value)
Casts a value from the ruby type to a type that the database knows how to understand.
-
#cast_value(value)
private
Convenience method for types which do not need separate type casting behavior for user and database inputs.
Constructor Details
.new(precision: nil, limit: nil, scale: nil) ⇒ Value
Instance Attribute Details
#limit (readonly)
[ GitHub ]#precision (readonly)
[ GitHub ]#scale (readonly)
[ GitHub ]Instance Method Details
#==(other) Also known as: #eql?
[ GitHub ]#assert_valid_value(_)
[ GitHub ]# File 'activemodel/lib/active_model/type/value.rb', line 121
def assert_valid_value(_) end
#cast(value)
::ActiveModel::Type
casts a value from user input (e.g. from a setter). This value may be a string from the form builder, or a ruby object passed to a setter. There is currently no way to differentiate between which source it came from.
The return value of this method will be returned from ActiveRecord::AttributeMethods::Read#read_attribute. See also: #cast_value.
value
The raw input, as provided to the attribute setter.
# File 'activemodel/lib/active_model/type/value.rb', line 45
def cast(value) cast_value(value) unless value.nil? end
#cast_value(value) (private)
Convenience method for types which do not need separate type casting behavior for user and database inputs. Called by #cast for values except nil
.
# File 'activemodel/lib/active_model/type/value.rb', line 128
def cast_value(value) # :doc: value end
#changed?(old_value, new_value, _new_value_before_type_cast) ⇒ Boolean
Determines whether a value has changed for dirty checking. old_value
and new_value
will always be type-cast. Types should not need to override this method.
# File 'activemodel/lib/active_model/type/value.rb', line 72
def changed?(old_value, new_value, _new_value_before_type_cast) old_value != new_value end
#changed_in_place?(raw_old_value, new_value) ⇒ Boolean
Determines whether the mutable value has been modified since it was read. Returns false
by default. If your type returns an object which could be mutated, you should override this method. You will need to either:
-
pass
new_value
to #serialize and compare it toraw_old_value
or
-
pass
raw_old_value
to #deserialize and compare it tonew_value
raw_old_value
The original value, before being passed to #deserialize.
new_value
The current value, after type casting.
# File 'activemodel/lib/active_model/type/value.rb', line 93
def changed_in_place?(raw_old_value, new_value) false end
#deserialize(value) Also known as: #serialize
Converts a value from database input to the appropriate ruby type. The return value of this method will be returned from ActiveRecord::AttributeMethods::Read#read_attribute. The default implementation just calls #cast.
value
The raw input, as provided from the database.
# File 'activemodel/lib/active_model/type/value.rb', line 31
def deserialize(value) cast(value) end
#eql?(other)
Alias for #==.
# File 'activemodel/lib/active_model/type/value.rb', line 115
alias eql? ==
#hash
[ GitHub ]#serializable?(value) ⇒ Boolean
Returns true if this type can convert value
to a type that is usable by the database. For example a boolean type can return true
if the value parameter is a Ruby boolean, but may return false
if the value parameter is some other object.
# File 'activemodel/lib/active_model/type/value.rb', line 18
def serializable?(value) true end
#serialize(value)
# File 'activemodel/lib/active_model/type/value.rb', line 53
def serialize(value) value end