Package org.fenixedu.academic.util

Examples of org.fenixedu.academic.util.WeekDay


        return result;
    }

    static private boolean isWorkDay(LocalDate current) {
        final WeekDay dayOfWeek = WeekDay.fromJodaTimeToWeekDay(current.toDateTimeAtStartOfDay());

        return dayOfWeek != WeekDay.SATURDAY && dayOfWeek != WeekDay.SUNDAY && !Holiday.isHoliday(current);
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.util.WeekDay

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.