Here you can find the source of objToTimeLong(Object obj)
public static Long objToTimeLong(Object obj)
//package com.java2s; public class Main { public static Long objToTimeLong(Object obj) { Long l = null;//from ww w .j ava2 s . c o m if (obj != null) { l = (Long) obj; } return l; } }