class Java::JavaMath::BigDecimal

JavaMath:.BigDecimal does not premit mathematical operations We convert it to RubyBigDecimal to represent it (if present in the DB) and upon loading from the DB

Public Instance Methods

from_orient() click to toggle source
# File lib/other.rb, line 337
def from_orient
  BigDecimal.new self.to_s
end
to_f() click to toggle source
# File lib/other.rb, line 333
def to_f
  BigDecimal.new self.to_s 
end