Class: Spira::Types::String
- Inherits:
-
Object
- Object
- Spira::Types::String
- Includes:
- Spira::Type
- Defined in:
- lib/spira/types/string.rb
Overview
A Spira::Type for string values. Values will be associated with the
XSD.string type with no language code.
A Resource property can reference this type as
Spira::Types::String, String, or XSD.string.
Class Method Summary (collapse)
Class Method Details
+ (Object) serialize(value)
20 21 22 |
# File 'lib/spira/types/string.rb', line 20 def self.serialize(value) RDF::Literal.new(value.to_s) end |
+ (Object) unserialize(value)
16 17 18 |
# File 'lib/spira/types/string.rb', line 16 def self.unserialize(value) value.object.to_s end |