Java SQL Time Create getSQLTimeFromString(String s)

Here you can find the source of getSQLTimeFromString(String s)

Description

returns a SQL Time given a formatted string

License

Open Source License

Declaration

public static java.sql.Time getSQLTimeFromString(String s) 

Method Source Code

//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);
    }
}

Related

  1. getSqlTime(int hour, int minute, int second)
  2. getSQLTime(String timeString)
  3. getSQLTime(String value)
  4. getSqlTimeFromTimeNumber(int time)
  5. getSysDateTimeMillis()
  6. getSystemCurrentTimeMillis()
  7. getSystemTimeGMTToday()