String
Example:
String foo = new Integer(3).toString();
After the quick-fix is applied:
String foo = Integer.toString(3);