I am using a third-part Java library, which defines a method named var
. In Java, that is not a problem. In Scala, var
is a reserved word and obj.var()
gives a compilation error.
Is there a more elegant solution to this than obj.getClass().getMethod("var").invoke()
?