Java Calendar Create getCalendar(int year, int month, int day, int hour, int mins, int secs)

Here you can find the source of getCalendar(int year, int month, int day, int hour, int mins, int secs)

Description

Constructs a calendar object representing the given time

License

Apache License

Declaration

public static GregorianCalendar getCalendar(int year, int month,
        int day, int hour, int mins, int secs) 

Method Source Code

//package com.java2s;
/*/*from   w  w w .  j a va  2 s .c  o  m*/
 * Copyright 2008-2013 LinkedIn, Inc
 * 
 * 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.GregorianCalendar;

public class Main {
    /**
     * Constructs a calendar object representing the given time
     */
    public static GregorianCalendar getCalendar(int year, int month,
            int day, int hour, int mins, int secs) {
        GregorianCalendar cal = new GregorianCalendar();
        cal.set(Calendar.YEAR, year);
        cal.set(Calendar.MONTH, month);
        cal.set(Calendar.DATE, day);
        cal.set(Calendar.HOUR_OF_DAY, hour);
        cal.set(Calendar.MINUTE, mins);
        cal.set(Calendar.SECOND, secs);
        cal.set(Calendar.MILLISECOND, 0);
        return cal;
    }
}

Related

  1. getCalendar(int dayOfWeek, int atHour, int atMinute)
  2. getCalendar(int year, int month, int date)
  3. getCalendar(int year, int month, int day)
  4. getCalendar(int year, int month, int day)
  5. getCalendar(int year, int month, int day, int hour, int min, int sec, String timezone)
  6. getCalendar(int year, int month, int day, int hours, int minutes, int seconds, TimeZone tz)
  7. getCalendar(int year, int month, int day, TimeZone timeZone)
  8. getCalendar(long millis)
  9. getCalendar(long millis)