Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

isWorkingDay?

// description of your code here

   1  
   2    public boolean isWorkingDay(Date date) {
   3          Calendar cal = GregorianCalendar.getInstance();
   4          cal.setTime(date);
   5          int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK); 
   6          if ((dayOfWeek  Calendar.SATURDAY) || (dayOfWeek  Calendar.SUNDAY)) {
   7              return false;
   8          } 
   9          return true;
  10     }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS