Here you can find the source of convert(Object o)
public static Object convert(Object o)
//package com.java2s; public class Main { public static Object convert(Object o) { if (o == null) return o; if (o instanceof java.sql.Date) return new java.util.Date(((java.sql.Date) o).getTime()); return o; }/*from w ww . ja v a 2s.co m*/ }