Here you can find the source of convertLong(String valueAsString)
private static Long convertLong(String valueAsString)
//package com.java2s; //License from project: LGPL public class Main { private static Long convertLong(String valueAsString) { return Long.valueOf(valueAsString); }//from w ww.j a va2s.com }