isInstanceOf method

bool isInstanceOf(
  1. JClass jclass
)
inherited

Whether this object is of the type of the given jclass.

Implementation

bool isInstanceOf(JClass jclass) {
  return Jni.env.IsInstanceOf(reference.pointer, jclass.reference.pointer);
}