Here you can find the source of getResultRowValueAsTimestamp(String valueName, Map
public static Timestamp getResultRowValueAsTimestamp(String valueName, Map<String, Object> resultRow)
//package com.java2s; //License from project: Open Source License import java.sql.Timestamp; import java.util.Map; public class Main { public static Timestamp getResultRowValueAsTimestamp(String valueName, Map<String, Object> resultRow) { return (Timestamp) resultRow.get(valueName); }/*from ww w. j a v a2 s . c o m*/ }