import java.util.List; public class TestSpecialMethodForTypeValue { public byte testByte(List xs) { return xs.get(0).byteValue(); } public short testShort(List xs) { return xs.get(0).shortValue(); } public int testInt(List xs) { return xs.get(0).intValue(); } public long testLong(List xs) { return xs.get(0).longValue(); } public float testFloat(List xs) { return xs.get(0).floatValue(); } public double testDouble(List xs) { return xs.get(0).doubleValue(); } }