Reports unnecessary creation of temporary objects when converting from Strings to primitive types.

For example:

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