Here you can find the source of IsWeekEnd(GregorianCalendar aInCal)
public static boolean IsWeekEnd(GregorianCalendar aInCal)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static boolean IsWeekEnd(GregorianCalendar aInCal) { String lDayName = aInCal.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.SHORT, Locale.getDefault()); if (Objects.equals(lDayName, new String("Sun")) || (Objects.equals(lDayName, new String("Sat")))) { return true; }/*w ww. ja v a 2 s .c o m*/ return false; } }