Here you can find the source of integerToString(Integer value)
public static String integerToString(Integer value)
//package com.java2s; //License from project: Apache License public class Main { public static String integerToString(Integer value) { String result = null;//from ww w . ja v a 2 s .c o m if (value != null) { result = value.toString(); } return result; } }