Java Week Day getFirstDayOfWeek()

Here you can find the source of getFirstDayOfWeek()

Description

get First Day Of Week

License

Open Source License

Declaration

public static int getFirstDayOfWeek() 

Method Source Code

//package com.java2s;
/*//from   w ww .j  av  a  2s . c  om
 * Copyright (C) 2002-2006 Stefan Stiller
 *
 * 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 2 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

import java.util.Calendar;

public class Main {
    private static int firstDayOfWeek = Calendar.MONDAY;

    public static int getFirstDayOfWeek() {
        return firstDayOfWeek;
    }
}

Related

  1. getDayWithWeek(Date date)
  2. getENWeekDay()
  3. getFirstday_Lastday_Week()
  4. getFirstDayOfLastWeek(Date date)
  5. getFirstDayOfWeek()
  6. getFirstDayOfWeek(Date date)
  7. getFirstDayOfWeek(Date date)
  8. getFirstDayOfWeek(final Date date)
  9. getFirstDayOfWeek(String format)