Class: Spira::Types::Double

Inherits:
Object
  • Object
show all
Includes:
Spira::Type
Defined in:
lib/spira/types/double.rb

Overview

A Spira::Type for Double values. Values will be associated with the ‘XSD.double` type.

A Resource property can reference this type as ‘Spira::Types::Double`, `Double`, or `XSD.double`.

Class Method Summary collapse

Methods included from Spira::Type

included

Class Method Details

.serialize(value) ⇒ Object



20
21
22
# File 'lib/spira/types/double.rb', line 20

def self.serialize(value)
  RDF::Literal.new(value.to_f, datatype: RDF::XSD.double)
end

.unserialize(value) ⇒ Object



16
17
18
# File 'lib/spira/types/double.rb', line 16

def self.unserialize(value)
  value.object.to_f
end