Class: Valkyrie::Persistence::Solr::ModelConverter::FloatPropertyValue
- Inherits:
-
ValueMapper
- Object
- ValueMapper
- Valkyrie::Persistence::Solr::ModelConverter::FloatPropertyValue
- Defined in:
- lib/valkyrie/persistence/solr/model_converter.rb
Overview
Casts Float values into a recognizable string in Solr.
Instance Attribute Summary
Attributes inherited from ValueMapper
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from ValueMapper
Constructor Details
This class inherits a constructor from Valkyrie::ValueMapper
Class Method Details
.handles?(value) ⇒ Boolean
331 332 333 |
# File 'lib/valkyrie/persistence/solr/model_converter.rb', line 331 def self.handles?(value) value.is_a?(Property) && value.value.is_a?(Float) end |