Test if a Scilab Java Object is valid on the Java side
bool = jexists(obj)
A mlist typed _JObj or _JClass
A boolean
Returns true if the corresponding Java object is always valid. An object can be invalidated with jremove.
jimport java.lang.Double; d = Double.new("1.23456"); jexists(d) jremove d; jexists(d)