Yes, because auto-boxing is just compiling to Integer.getValue under the hood, the bytecode for Integer.getValue(1) and ((Integer) 1) is the same. They'll both compile to something like:
iconst_1
invokestatic java/lang/Integer.valueOf:(I)Ljava/lang/Integer