Here you can find the source of getReadableWeekDay(int day)
public static String getReadableWeekDay(int day)
//package com.java2s; import org.joda.time.DateTime; public class Main { private static final String[] WEEKDAY = new String[] { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday", }; public static String getReadableWeekDay(DateTime date) { return WEEKDAY[date.getDayOfWeek() - 1]; }// w w w . jav a2 s.co m public static String getReadableWeekDay(int day) { return WEEKDAY[day - 1]; } }