Here you can find the source of convertDateToCalendar(Date date)
Parameter | Description |
---|---|
date | a parameter |
public static Calendar convertDateToCalendar(Date date)
//package com.java2s; /*/*www . j ava2 s . c o m*/ * Copyright (C) 2016 muhamadto * * 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; public class Main { /** * Creates a Calender instance using the date argument. It resets the day to midnight. For example if the date * is 12/4/2009 at 12:30:20.10 this method will set the calendar to 12/4/2009 at 0:0:0.0 * @param date * @return cal */ public static Calendar convertDateToCalendar(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date); setTimePart(cal); return cal; } private static void setTimePart(Calendar cal) { cal.set(Calendar.HOUR, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); } }