Here you can find the source of toLong(Object oid)
public static long toLong(Object oid)
//package com.java2s; public class Main { public static long toLong(Object oid) { return Long.parseLong(String.valueOf(oid)); }/*from w w w . ja v a 2 s. c o m*/ }