Java SQL Time From toTime(String value)

Here you can find the source of toTime(String value)

Description

to Time

License

Open Source License

Declaration

public static Time toTime(String value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.sql.Time;

public class Main {
    public static Time toTime(String value) {
        if (value != null) {
            return Time.valueOf(value);
        }/*from   w  w w.  ja  va 2 s  .  c om*/
        return null;
    }
}

Related

  1. toTime(LocalTime localTime)
  2. toTime(Object object, Object oDefault)
  3. toTime(Object value)
  4. toTime(String format, String str)
  5. toTime(String str)
  6. toTime2(int value, int fraction, int width)
  7. toTime2(int value, int nanos)
  8. toTimeIso(Date date)