Java SQL Time Create timeToCalendar(Time input)

Here you can find the source of timeToCalendar(Time input)

Description

time To Calendar

License

Open Source License

Declaration

protected final static Calendar timeToCalendar(Time input) 

Method Source Code

//package com.java2s;
/* -*- mode: java; c-basic-offset: 4; indent-tabs-mode: nil; -*-
 *  vim:expandtab:shiftwidth=4:tabstop=4:smarttab:
 *
 *  ndb-bindings: Bindings for the NDB API
 *  Copyright (C) 2008 MySQL/* ww w . j a  v a 2  s  . c o  m*/
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

import java.sql.Time;

import java.util.Calendar;

public class Main {
    protected final static Calendar timeToCalendar(Time input) {
        java.util.Calendar output = Calendar.getInstance();
        output.setTimeInMillis(input.getTime());
        return output;
    }
}

Related

  1. SumTime(Time t1, Time t2)
  2. sumTimes(String[] timeStrings, DateFormat df)
  3. time2Double(java.sql.Time time)
  4. time2String(final java.sql.Time value)
  5. timeToBytes(Time t)
  6. timeToInternal(java.sql.Time time)
  7. timeToLong(Object timeObj)
  8. timeToString(java.sql.Time a_Time, String aS_Format)
  9. timeToString(Time t)