Class: Mongoid::Fields::Serializable::NilClass
- Includes:
- Mongoid::Fields::Serializable
- Defined in:
- lib/mongoid/fields/serializable/nil_class.rb
Overview
Defines the behaviour for nil fields.
Instance Attribute Summary
Attributes included from Mongoid::Fields::Serializable
#default_val, #label, #localize, #name, #options
Instance Method Summary collapse
-
#deserialize(object) ⇒ nil
Deserialize this field from the type stored in MongoDB to the type defined on the model.
-
#serialize(object) ⇒ nil
Serialize the object from the type defined in the model to a MongoDB compatible object to store.
Methods included from Mongoid::Fields::Serializable
#constraint, #eval_default, #localized?, #metadata, #object_id_field?, #type, #versioned?
Instance Method Details
#deserialize(object) ⇒ nil
Deserialize this field from the type stored in MongoDB to the type defined on the model
21 |
# File 'lib/mongoid/fields/serializable/nil_class.rb', line 21 def deserialize(object); nil; end |
#serialize(object) ⇒ nil
Serialize the object from the type defined in the model to a MongoDB compatible object to store.
34 |
# File 'lib/mongoid/fields/serializable/nil_class.rb', line 34 def serialize(object); nil; end |