Class: Valkyrie::Persistence::Fedora::Persister::ModelConverter::FloatValue
Instance Attribute Summary
Attributes inherited from ValueMapper
#calling_mapper, #value
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from ValueMapper
for, #initialize, register
Class Method Details
.handles?(value) ⇒ Boolean
436
437
438
|
# File 'lib/valkyrie/persistence/fedora/persister/model_converter.rb', line 436
def self.handles?(value)
value.is_a?(Property) && value.value.is_a?(Float)
end
|
Instance Method Details
#result ⇒ Object
440
441
442
443
444
445
|
# File 'lib/valkyrie/persistence/fedora/persister/model_converter.rb', line 440
def result
map_value(converted_value: RDF::Literal.new(
value.value,
datatype: PermissiveSchema.valkyrie_float
))
end
|