Java Calendar Create getCalendar()

Here you can find the source of getCalendar()

Description

get Calendar

License

Apache License

Declaration

private static Calendar getCalendar() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.Calendar;

public class Main {
    public static int FIRST_DAY_OF_WEEK = Calendar.MONDAY;

    private static Calendar getCalendar() {
        Calendar c = Calendar.getInstance();
        c.setFirstDayOfWeek(FIRST_DAY_OF_WEEK);
        return c;
    }//from  w w  w  .  j  av  a  2s  .  com
}

Related

  1. getCalendar()
  2. getCalendar()
  3. getCalendar()
  4. getCalendar()
  5. getCalendar()
  6. getCalendar()
  7. getCalendar()
  8. getCalendar()
  9. getCalendar()