Here you can find the source of fromInteger(Integer value)
Parameter | Description |
---|---|
value | a parameter |
public static String fromInteger(Integer value)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from ww w .j a v a 2 s . c o m*/ * integerValue * * @param value * @return String */ public static String fromInteger(Integer value) { String result = "0"; if (value != null) result = String.valueOf(value.intValue()); return result; } }