package org.jboss.proxy.compiler;
public class Util
{
public static final Object[] NOARGS = {};
public static final ClassLoader NULLCL = null;
public static Boolean wrap(boolean x)
{
return new Boolean(x);
}
public static Byte wrap(byte x)
{
return new Byte(x);
}
public static Character wrap(char x)
{
return new Character(x);
}
public static Short wrap(short x)
{
return new Short(x);
}
public static Integer wrap(int x)
{
return new Integer(x);
}
public static Long wrap(long x)
{
return new Long(x);
}
public static Float wrap(float x)
{
return new Float(x);
}
public static Double wrap(double x)
{
return new Double(x);
}
}