Class: Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::CreatedAtValue
- Inherits:
-
ValueMapper
- Object
- ValueMapper
- Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::CreatedAtValue
- Defined in:
- lib/valkyrie/persistence/fedora/persister/orm_converter.rb
Overview
Casts the value of the RDF statements encoding the time of creation for the Valkyrie Resource into a DateTime value
Instance Attribute Summary
Attributes inherited from ValueMapper
Class Method Summary collapse
-
.handles?(value) ⇒ Boolean
Determines whether or not the Property RDF statement encodes a creation date.
Instance Method Summary collapse
-
#result ⇒ NonStringSingleApplicator
Constructs a NonStringSingleApplicator object for mapping the resource creation time.
Methods inherited from ValueMapper
Constructor Details
This class inherits a constructor from Valkyrie::ValueMapper
Class Method Details
.handles?(value) ⇒ Boolean
Determines whether or not the Property RDF statement encodes a creation date
468 469 470 |
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 468 def self.handles?(value) value.statement.predicate == value.adapter.schema.predicate_for(property: :created_at, resource: nil) end |
Instance Method Details
#result ⇒ NonStringSingleApplicator
Constructs a NonStringSingleApplicator object for mapping the resource creation time
474 475 476 |
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 474 def result NonStringSingleApplicator.new(value) end |