List of usage examples for java.sql Time setSeconds
@Deprecated public void setSeconds(int seconds)
From source file:com.jk.framework.util.FakeRunnable.java
/** * Convert date to time.//from www. j ava 2 s. c o m * * @param date * the date * @return the time */ public static Time convertDateToTime(final Date date) { final Time time = new Time(date.getTime()); time.setSeconds(0); return time; }