Here you can find the source of isInWorkDay(Calendar start)
public static boolean isInWorkDay(Calendar start)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { /**/*w w w. j a v a 2s.c om*/ * Determines whether or not the date falls on a work day (Mon-Fri) */ public static boolean isInWorkDay(Calendar start) { final int dayOfWeek = start.get(Calendar.DAY_OF_WEEK); return dayOfWeek > 1 && dayOfWeek < 7; } }