Here you can find the source of isWeekendToday()
public static boolean isWeekendToday()
//package com.java2s; import java.util.Calendar; public class Main { public static boolean isWeekendToday() { Calendar calendar = Calendar.getInstance(); int week = calendar.get(Calendar.DAY_OF_WEEK); return week == 1 || week == 7; }/* w ww .j a v a 2s . c om*/ }