79 lines
2.7 KiB
Java
79 lines
2.7 KiB
Java
|
|
/*
|
||
|
|
* Copyright (c) 2013 ezivkoc
|
||
|
|
*
|
||
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
|
* in the Software without restriction, including without limitation the rights
|
||
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
|
* furnished to do so, subject to the following conditions:
|
||
|
|
*
|
||
|
|
* The above copyright notice and this permission notice shall be included in
|
||
|
|
* all copies or substantial portions of the Software.
|
||
|
|
*
|
||
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
|
* THE SOFTWARE.
|
||
|
|
*/
|
||
|
|
|
||
|
|
package zutil;
|
||
|
|
|
||
|
|
import java.util.HashSet;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This class include some utility functions for classes
|
||
|
|
*
|
||
|
|
* User: Ziver
|
||
|
|
*/
|
||
|
|
public class ClassUtil {
|
||
|
|
/** A Set that contains possible wrapper objects for primitives **/
|
||
|
|
private static final HashSet<Class<?>> wrappers;
|
||
|
|
static {
|
||
|
|
wrappers = new HashSet<Class<?>>();
|
||
|
|
wrappers.add(Boolean.class);
|
||
|
|
wrappers.add(Character.class);
|
||
|
|
wrappers.add(Byte.class);
|
||
|
|
wrappers.add(Short.class);
|
||
|
|
wrappers.add(Integer.class);
|
||
|
|
wrappers.add(Long.class);
|
||
|
|
wrappers.add(Float.class);
|
||
|
|
wrappers.add(Double.class);
|
||
|
|
wrappers.add(Void.class);
|
||
|
|
}
|
||
|
|
|
||
|
|
/** A Set that contains possible primitives **/
|
||
|
|
private static final HashSet<Class<?>> primitives;
|
||
|
|
static {
|
||
|
|
primitives = new HashSet<Class<?>>();
|
||
|
|
primitives.add(boolean.class);
|
||
|
|
primitives.add(char.class);
|
||
|
|
primitives.add(byte.class);
|
||
|
|
primitives.add(short.class);
|
||
|
|
primitives.add(int.class);
|
||
|
|
primitives.add(long.class);
|
||
|
|
primitives.add(float.class);
|
||
|
|
primitives.add(double.class);
|
||
|
|
primitives.add(void.class);
|
||
|
|
primitives.add(String.class);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return if the given class is a wrapper for a primitive
|
||
|
|
*/
|
||
|
|
public static boolean isWrapper(Class<?> type){
|
||
|
|
return wrappers.contains( type );
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return if the given class is a primitive including String
|
||
|
|
*/
|
||
|
|
public static boolean isPrimitive(Class<?> type){
|
||
|
|
return primitives.contains( type );
|
||
|
|
}
|
||
|
|
}
|