/* 525 */ int booleanValueIndex = cp.addMethodref(Boolean.class.getName(), "booleanValue", "()Z");
/* */
/* 531 */ if (type.equals(Integer.TYPE.getName()))
/* */ {
/* 533 */ int x = cp.addClass("java.lang.Integer");
/* 534 */ il.append(new CHECKCAST(x));
/* 535 */ il.append(new INVOKEVIRTUAL(intValueIndex));
/* */ }
/* 538 */ else if (type.equals(Byte.TYPE.getName()))
/* */ {
/* 540 */ int x = cp.addClass("java.lang.Byte");
/* 541 */ il.append(new CHECKCAST(x));
/* 542 */ il.append(new INVOKEVIRTUAL(byteValueIndex));
/* */ }
/* 545 */ else if (type.equals(Character.TYPE.getName()))
/* */ {
/* 547 */ int x = cp.addClass("java.lang.Character");
/* 548 */ il.append(new CHECKCAST(x));
/* 549 */ il.append(new INVOKEVIRTUAL(charValueIndex));
/* */ }
/* 552 */ else if (type.equals(Double.TYPE.getName()))
/* */ {
/* 554 */ int x = cp.addClass("java.lang.Double");
/* 555 */ il.append(new CHECKCAST(x));
/* 556 */ il.append(new INVOKEVIRTUAL(doubleValueIndex));
/* */ }
/* 559 */ else if (type.equals(Float.TYPE.getName()))
/* */ {
/* 561 */ int x = cp.addClass("java.lang.Float");
/* 562 */ il.append(new CHECKCAST(x));
/* 563 */ il.append(new INVOKEVIRTUAL(floatValueIndex));
/* */ }
/* 566 */ else if (type.equals(Long.TYPE.getName()))
/* */ {
/* 568 */ int x = cp.addClass("java.lang.Long");
/* 569 */ il.append(new CHECKCAST(x));
/* 570 */ il.append(new INVOKEVIRTUAL(longValueIndex));
/* */ }
/* 573 */ else if (type.equals(Short.TYPE.getName()))
/* */ {
/* 575 */ int x = cp.addClass("java.lang.Short");
/* 576 */ il.append(new CHECKCAST(x));
/* 577 */ il.append(new INVOKEVIRTUAL(shortValueIndex));
/* */ }
/* 580 */ else if (type.equals(Boolean.TYPE.getName()))
/* */ {
/* 582 */ int x = cp.addClass("java.lang.Boolean");
/* 583 */ il.append(new CHECKCAST(x));
/* 584 */ il.append(new INVOKEVIRTUAL(booleanValueIndex));
/* */ }
/* */
/* 587 */ return il;
/* */ }