Java examples for java.util:Week
snap Start Of Work Week
/******************************************************************************* * Copyright (c) 2004, 2009 Tasktop Technologies and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors:/*from w w w . j a v a 2s. c o m*/ * Tasktop Technologies - initial API and implementation *******************************************************************************/ //package com.java2s; import java.util.Calendar; public class Main { public static void main(String[] argv) throws Exception { Calendar cal = Calendar.getInstance(); System.out.println(snapStartOfWorkWeek(cal)); } private static int startDay = Calendar.MONDAY; public static Calendar snapStartOfWorkWeek(Calendar cal) { cal.set(Calendar.DAY_OF_WEEK, startDay); snapStartOfDay(cal); return cal; } public static Calendar snapStartOfDay(Calendar cal) { cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); cal.getTime(); return cal; } }