Android examples for java.lang.reflect:Class
is Class Integer Type
//package com.java2s; public class Main { public static boolean isIntegerType(Class<?> type) { return (type == Integer.class) || (type == Integer.TYPE); }//w ww . j a v a 2 s . c o m }