For example: new Integer("3").intValue() will be reported, and can be automatically converted to: Integer.valueOf("3")
new Integer("3").intValue()
Integer.valueOf("3")