Here you can find the source of toLong(final String value)
Parameter | Description |
---|---|
value | a parameter |
public static Long toLong(final String value)
//package com.java2s; //License from project: Apache License public class Main { /**/*from ww w . ja v a 2 s .co m*/ * create Long from str. * @param value * @return */ public static Long toLong(final String value) { return Long.parseLong(value); } }