Java Date to Calendar toCalendar(Date date)

Here you can find the source of toCalendar(Date date)

Description

Converts a java.util.Date to a java.util.Calendar.

License

Apache License

Parameter

Parameter Description
date the <code>java.util.Date</code> to convert

Return

the converted java.util.Calendar

Declaration

public static Calendar toCalendar(Date date) 

Method Source Code

//package com.java2s;
/*//from  ww  w . j a v  a2 s  .  com
 * Copyright 2017 Marcus Portmann
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

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

public class Main {
    /**
     * Converts a <code>java.util.Date</code> to a <code>java.util.Calendar</code>.
     *
     * @param date the <code>java.util.Date</code> to convert
     *
     * @return the converted <code>java.util.Calendar</code>
     */
    public static Calendar toCalendar(Date date) {
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);

        return calendar;
    }
}

Related

  1. getCalendar(Date date)
  2. getCalendar(final Date date, final boolean stripTime)
  3. getCalendar(String dateString)
  4. newCalendar(Date date)
  5. toCalendar(Date date)
  6. toCalendar(Date date)
  7. toCalendar(Date date)
  8. toCalendar(Date date)
  9. toCalendar(Date dtime)