Here you can find the source of longToString(long longValue)
Parameter | Description |
---|---|
longValue | The long to convert. |
public static String longToString(long longValue)
//package com.java2s; /* Please see the license information at the end of this file. */ public class Main { /** Convert long to string. */*ww w . j a v a2s .c om*/ * @param longValue The long to convert. * * @return The long converted to a string. * */ public static String longToString(long longValue) { return new Long(longValue).toString(); } }