class RDF::Literal::Decimal

A decimal literal.

@example Arithmetic with decimal literals

RDF::Literal(BigDecimal('1.0')) + 0.5   #=> RDF::Literal(BigDecimal('1.5'))
RDF::Literal(BigDecimal('1.0')) - 0.5   #=> RDF::Literal(BigDecimal('0.5'))
RDF::Literal(BigDecimal('1.0')) * 0.5   #=> RDF::Literal(BigDecimal('0.5'))
RDF::Literal(BigDecimal('1.0')) / 0.5   #=> RDF::Literal(BigDecimal('2.0'))

@see www.w3.org/TR/xmlschema11-2/#decimal @since 0.2.1

Constants

DATATYPE
GRAMMAR

Public Class Methods

new(value, options = {}) click to toggle source

@param [BigDecimal] value @option options [String] :lexical (nil)

# File lib/rdf/model/literal/decimal.rb, line 20
def initialize(value, options = {})
  @datatype = RDF::URI(options[:datatype] || self.class.const_get(:DATATYPE))
  @string   = options[:lexical] if options.has_key?(:lexical)
  @string   ||= value if value.is_a?(String)
  @object   = case
    when value.is_a?(BigDecimal) then value
    else BigDecimal(value.to_s)
  end
end

Public Instance Methods

abs() click to toggle source

Returns the absolute value of `self`.

@return [RDF::Literal] @since 0.2.3

# File lib/rdf/model/literal/decimal.rb, line 55
def abs
  (d = to_d) && d > 0 ? self : RDF::Literal(d.abs)
end
canonicalize!() click to toggle source

Converts this literal into its canonical lexical representation.

@return [RDF::Literal] `self` @see www.w3.org/TR/xmlschema11-2/#decimal

# File lib/rdf/model/literal/decimal.rb, line 35
def canonicalize!
  # Can't use simple %f transformation due to special requirements from
  # N3 tests in representation
  @string = begin
    i, f = @object.to_s('F').split('.')
    i.sub!(/^\+?0+(\d)$/, '\1') # remove the optional leading '+' sign and any extra leading zeroes
    f = f[0, 16]                # truncate the fractional part after 15 decimal places
    f.sub!(/0*$/, '')           # remove any trailing zeroes
    f = '0' if f.empty?         # ...but there must be a digit to the right of the decimal point
    "#{i}.#{f}"
  end
  @object = BigDecimal(@string) unless @object.nil?
  self
end
ceil() click to toggle source

Returns the smallest integer greater than or equal to `self`.

@example

RDF::Literal(1).ceil            #=> RDF::Literal(1)

@return [RDF::Literal]

# File lib/rdf/model/literal/decimal.rb, line 74
def ceil
  self.class.new(to_d.ceil)
end
floor() click to toggle source

Returns the largest integer less than or equal to `self`.

@example

RDF::Literal(1).floor            #=> RDF::Literal(1)

@return [RDF::Literal]

# File lib/rdf/model/literal/decimal.rb, line 85
def floor
  self.class.new(to_d.floor)
end
nonzero?() click to toggle source

Returns `self` if the value is not zero, `nil` otherwise.

@return [Boolean] @since 0.2.3

# File lib/rdf/model/literal/decimal.rb, line 103
def nonzero?
  to_d.nonzero? ? self : nil
end
round() click to toggle source

Returns the number with no fractional part that is closest to the argument. If there are two such numbers, then the one that is closest to positive infinity is returned. An error is raised if arg is not a numeric value.

@return [RDF::Literal]

# File lib/rdf/model/literal/decimal.rb, line 63
def round
  self.class.new(to_d.round)
end
to_s() click to toggle source

Returns the value as a string.

@return [String] @see BigDecimal#to_s

# File lib/rdf/model/literal/decimal.rb, line 112
def to_s
  @string || @object.to_s('F')
end
zero?() click to toggle source

Returns `true` if the value is zero.

@return [Boolean] @since 0.2.3

# File lib/rdf/model/literal/decimal.rb, line 94
def zero?
  to_d.zero?
end