javaRecognizer( cName )

Returns a function that can recognize instances of the specified Java class and its subclasses. The class name cName is specified as a string describing the fully qualified class name.

Consider the following example, which uses a recognizer for Integers:

:-) var isInteger = javaRecognizer( "java.lang.Integer" );
There are 0 results
:-) 84755.isInteger;
There is 1 result
<true>
:-) "hello".isInteger;
There is 1 result
<false>