Here you can find the source of toTimestamp(String value)
public static Timestamp toTimestamp(String value)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; public class Main { public static Timestamp toTimestamp(String value) { return Timestamp.valueOf(value); }/*w ww . jav a2 s .c om*/ }