Class: Valkyrie::Persistence::Solr::ModelConverter::IntegerPropertyValue
- Inherits:
-
ValueMapper
- Object
- ValueMapper
- Valkyrie::Persistence::Solr::ModelConverter::IntegerPropertyValue
- Defined in:
- lib/valkyrie/persistence/solr/model_converter.rb
Overview
Casts Integer 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
212 213 214 |
# File 'lib/valkyrie/persistence/solr/model_converter.rb', line 212 def self.handles?(value) value.is_a?(Property) && value.value.is_a?(Integer) end |