Class: Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::IntegerValue
- Inherits:
-
ValueMapper
- Object
- ValueMapper
- Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::IntegerValue
- Defined in:
- lib/valkyrie/persistence/fedora/persister/orm_converter.rb
Overview
Class for mapping RDF integer literals into Valkyrie Resource attribute values
Instance Attribute Summary
Attributes inherited from ValueMapper
Class Method Summary collapse
-
.handles?(value) ⇒ Boolean
Determines whether or not a Property statement is an RDF literal typed for Integer values.
Instance Method Summary collapse
-
#result ⇒ Applicator
Casts the value of the RDF literal into an Applicator for Integer values.
Methods inherited from ValueMapper
Constructor Details
This class inherits a constructor from Valkyrie::ValueMapper
Class Method Details
.handles?(value) ⇒ Boolean
Determines whether or not a Property statement is an RDF literal typed for Integer values
332 333 334 |
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 332 def self.handles?(value) value.statement.object.is_a?(RDF::Literal) && value.statement.object.language.blank? && value.statement.object.datatype == PermissiveSchema.valkyrie_int end |
Instance Method Details
#result ⇒ Applicator
Casts the value of the RDF literal into an Applicator for Integer values
338 339 340 341 |
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 338 def result value.statement.object = value.statement.object.value.to_i calling_mapper.for(Property.new(statement: value.statement, scope: value.scope, adapter: value.adapter)).result end |