I'm getting an error when attempting to call a method on a Java object from JRuby when the Java method's signature has a primitive double and the parameter I pass is a Ruby BigDecimal. Is there any implicit conversion that's possible there or does it have to be handled explicitly. I'm invoking the Java object's method with send if that makes any difference.

java_object.send :some_method, a_big_decimal

(This could actually invoke methods with different type signatures on the Java object so I don't only have to worry about BigDecimals here which is why I'd like to avoid explicitly handling it if possible)

I've also tried

java_object.send :some_method, a_big_decimal.to_java

But that produces a different error:

TypeError: cannot convert instance of class org.jruby.java.proxies.ConcreteJavaProxy to double
link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I was just Googling for a solution to a similar problem, when I came across this question (only 3 hours after you posted it ... damn Google is fast!).

I was eventually able to solve my problem by doing (the equivalent of) this:

java_object.some_method a_big_decimal.to_f

Hopefully that will work for you?

link|improve this answer
Yeah, that's what I ended up doing as well. I was just hoping there was a way to do it implicitly since in my case the parameter can be other types than BigDecimal. I had to check is_a? BigDecimal first and it felt kind of ugly. – Will Gorman Sep 7 '11 at 1:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.