I found some strange exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
How it can be possible
Use .toString instead like below:
String myString = myIntegerObject.toString();