Here you can find the source of isDate(Object obj)
public static boolean isDate(Object obj)
//package com.java2s; public class Main { public static boolean isDate(Object obj) { if (obj == null) return false; return obj instanceof java.sql.Date || obj instanceof java.util.Date; }/*from www. j a v a2 s.c o m*/ }