Is a java object an instance of a given java class

o %instanceof% cl
.jinstanceof( o, cl )

Arguments

o

java object reference

cl

java class. This can be a character vector of length one giving the name of the class, or another java object, or an instance of the Class class, or a object of class jclassName.

Value

TRUE if o is an instance of cl

Author

Romain Francois <francoisromain@free.fr>

Examples

# \dontshow{
.jinit()
#> [1] 0
# }
Double <- J("java.lang.Double")
d <- new( Double, "10.2" )

# character
d %instanceof% "java.lang.Double"
#> [1] TRUE
d %instanceof% "java.lang.Number"
#> [1] TRUE

# jclassName
d %instanceof% Double
#> [1] TRUE

# instance of Class
Double.class <- Double@jobj
d %instanceof% Double.class
#> [1] TRUE

# other object
other.double <- new( Double, 10.2 )
d %instanceof% other.double
#> [1] TRUE

# \dontshow{

stopifnot( d %instanceof% "java.lang.Double" )
stopifnot( d %instanceof% "java.lang.Number" )
stopifnot( d %instanceof% "java.lang.Object" )
stopifnot( d %instanceof% Double.class )
stopifnot( d %instanceof% other.double )
stopifnot( d %instanceof% Double )
# }