Example usage for org.apache.commons.bcel6.generic Type getClass

List of usage examples for org.apache.commons.bcel6.generic Type getClass

Introduction

In this page you can find the example usage for org.apache.commons.bcel6.generic Type getClass.

Prototype

@HotSpotIntrinsicCandidate
public final native Class<?> getClass();

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:ru.objective.jni.utils.Utils.java

public static boolean isArrayType(Type type) {
    return type.getClass() == ArrayType.class;
}