Here you can find the source of isWeekend(LocalDate date)
public static boolean isWeekend(LocalDate date)
//package com.java2s; //License from project: Open Source License import java.time.DayOfWeek; import java.time.LocalDate; public class Main { public static boolean isWeekend(LocalDate date) { return date.getDayOfWeek() == DayOfWeek.SATURDAY || date.getDayOfWeek() == DayOfWeek.SUNDAY; }//from w w w . ja v a 2s .c o m }