Here you can find the source of dayOfWeek(Date pWallDate)
public static int dayOfWeek(Date pWallDate)
//package com.java2s; // This Source Code is in the Public Domain per: http://unlicense.org import java.util.*; public class Main { public static int dayOfWeek(Date pWallDate) { return pWallDate.getDay(); }/*from w ww .ja v a 2 s . com*/ }