Here you can find the source of intToString(final Integer value)
Parameter | Description |
---|---|
value | a integer value |
public static final String intToString(final Integer value)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from ww w . j a v a 2 s .co m*/ * Converts an integer into an SVG integer string. * * @param value a integer value * * @return an SVG number string */ public static final String intToString(final Integer value) { return value.toString(); } }