Tests whether the specified object is an instance of the specified Java class.
Parameters:
obj
className
You may call this function in a method-like style:
obj.instanceOfClass(className)
The following expression
getParam("v").instanceOfClass("java.util.Vector")
"v"
is
an instance of java.util.Vector
class.