Here you can find the source of toLong(Object value)
public static long toLong(Object value)
//package com.java2s; //License from project: Apache License public class Main { public static long toLong(Object value) { if (value instanceof Number) return ((Number) value).longValue(); return Long.parseLong(value.toString()); }//from w ww . j a v a 2 s. c om }