Here you can find the source of getSQLTimeFromString(String s)
public static java.sql.Time getSQLTimeFromString(String s)
//package com.java2s; /* $This file is distributed under the terms of the license in /doc/license.txt$ */ public class Main { /**// www . ja v a 2 s . co m * returns a SQL Time given a formatted string */ public static java.sql.Time getSQLTimeFromString(String s) { return java.sql.Time.valueOf(s); } }