blob: 124a974d512036e11a81521b099352429b7314db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 itemis AG (http://www.itemis.eu) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* itemis AG - Initial contribution and API
*******************************************************************************/
package org.eclipse.emf.parsley.runtime.util;
/**
* @author Jan Koehnlein - Initial contribution and API
*/
public class ReflectionUtil {
public static Class<?> getObjectType(Class<?> clazzA) {
if (clazzA != null && clazzA.isPrimitive()) {
if (clazzA == Boolean.TYPE) {
return Boolean.class;
} else if (clazzA == Integer.TYPE) {
return Integer.class;
} else if (clazzA == Float.TYPE) {
return Float.class;
} else if (clazzA == Byte.TYPE) {
return Byte.class;
} else if (clazzA == Character.TYPE) {
return Character.class;
} else if (clazzA == Double.TYPE) {
return Double.class;
} else if (clazzA == Short.TYPE) {
return Short.class;
} else if (clazzA == Long.TYPE) {
return Long.class;
}
}
return clazzA;
}
}