Class: Java::JavaMath::BigDecimal

Inherits:
Object
  • Object
show all
Defined in:
lib/other.rb

Overview

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

Instance Method Summary collapse

Instance Method Details

#from_orientObject



53
54
55
# File 'lib/other.rb', line 53

def from_orient
  BigDecimal.new self.to_s
end

#to_fObject



49
50
51
# File 'lib/other.rb', line 49

def to_f
  BigDecimal.new self.to_s 
end