switch (mv.getTag()) {
default:
print("?");
break;
case Annotation.MEMBER_TAG_BOOLEAN:
ConstantIntegerInfo ci = (ConstantIntegerInfo)value;
print(ci.getValue() == 0 ? "false" : "true");
break;
case Annotation.MEMBER_TAG_BYTE:
case Annotation.MEMBER_TAG_SHORT:
case Annotation.MEMBER_TAG_INT:
case Annotation.MEMBER_TAG_LONG: