Here you can find the source of isWrapper(Class> dataType)
public static boolean isWrapper(Class<?> dataType)
//package com.java2s; /**/*from w ww . j ava2 s. co m*/ * Copyright 2004-2014 Riccardo Solmi. All rights reserved. * This file is part of the Whole Platform. * * The Whole Platform is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * The Whole Platform is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with the Whole Platform. If not, see <http://www.gnu.org/licenses/>. */ import java.util.HashMap; import java.util.Map; public class Main { private static Map<Class<?>, Class<?>> wrapperClassesMap; public static boolean isWrapper(Class<?> dataType) { return wrapperClassesMap().containsKey(dataType); } private static Map<Class<?>, Class<?>> wrapperClassesMap() { if (wrapperClassesMap == null) { wrapperClassesMap = new HashMap<Class<?>, Class<?>>(); wrapperClassesMap.put(Boolean.class, boolean.class); wrapperClassesMap.put(Byte.class, byte.class); wrapperClassesMap.put(Character.class, char.class); wrapperClassesMap.put(Double.class, double.class); wrapperClassesMap.put(Float.class, float.class); wrapperClassesMap.put(Integer.class, int.class); wrapperClassesMap.put(Long.class, long.class); wrapperClassesMap.put(Short.class, short.class); } return wrapperClassesMap; } }