class B6 { public final static byte xbyte = 0x14; public final static char xchar = 0x14; public final static short xshort = 0x14; public final static int xint = 0x14; public final static long xlong = 0x14; public final static float xfloat = 0.0F; public final static double xdouble = 0.0; public static void main(String[] args) { initbyte(xbyte); initchar(xchar); initshort(xshort); initint(xint); initlong(xlong); initfloat(xfloat); initdouble(xdouble); switch (xbyte) { case xbyte: } switch (xchar) { case xchar: } switch (xshort) { case xshort: } switch (xint) { case xint: } System.out.println("done."); } static void initbyte(byte y) { } static void initchar(char y) { } static void initshort(short y) { } static void initint(int y) { } static void initlong(long y) { } static void initfloat(float y) { } static void initdouble(double y) { } }