Не может вызвать toString () на примитивном типе int

int foo = 12345;
String foo_String = Integer.toString(foo);
Jolly Jaguar