Java Date Create createDate(final Date date)

Here you can find the source of createDate(final Date date)

Description

create Date

License

Open Source License

Declaration

private static Calendar createDate(final Date date) 

Method Source Code

//package com.java2s;
/**//  w  w  w  .  j  a  v  a2  s .  c  om
 *    OpenTrainingCenter
 *
 *    Copyright (C) 2014 Sascha Iseli sascha.iseli(at)gmx.ch
 *
 *    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 3 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, see <http://www.gnu.org/licenses/>.
 */

import java.util.Calendar;
import java.util.Date;
import java.util.Locale;

public class Main {
    private static Calendar createDate(final Date date) {
        final Calendar cal = Calendar.getInstance(Locale.getDefault());
        cal.setTime(date);
        return cal;
    }
}

Related

  1. buildDatetime(Date datePart, Date hourMinutePart)
  2. buildDateTime(String curDate, String curTime, String meridiem)
  3. buildDateTimeUTC(Calendar cal)
  4. castToDate(Object value)
  5. create(int year, int month, int date, TimeZone timeZone)
  6. createDate(final Date date)
  7. createDate(final int aYear, final int aMonth, final int aDate, final int aHour, final int aMinute, final int aSecond)
  8. createDate(final int day, final int month, final int year)
  9. createDate(final int month, final int day, final int year)