Here you can find the source of getDate(Map
public static Date getDate(Map<String, Object> m, String key)
//package com.java2s; //License from project: Apache License import java.sql.Date; import java.util.Map; public class Main { public static Date getDate(Map<String, Object> m, String key) { return (Date) m.get(key); }// www . jav a 2s. co m }