Class: Valkyrie::Persistence::Shared::JSONValueMapper::URIValue
- Inherits:
-
ValueMapper
- Object
- ValueMapper
- Valkyrie::Persistence::Shared::JSONValueMapper::URIValue
- Defined in:
- lib/valkyrie/persistence/shared/json_value_mapper.rb
Overview
Converts stored URIs into RDF::URIs
Instance Attribute Summary
Attributes inherited from ValueMapper
Class Method Summary collapse
-
.handles?(value) ⇒ Boolean
Determines whether or not a value is a Hash containing the key “@id”.
Instance Method Summary collapse
-
#result ⇒ RDF::URI
Constructs a RDF::URI object using the URI keyed to @id in the value.
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 value is a Hash containing the key “@id”
77 78 79 |
# File 'lib/valkyrie/persistence/shared/json_value_mapper.rb', line 77 def self.handles?(value) value.is_a?(Hash) && value["@id"] end |