Here you can find the source of intToDay(int d)
public static String intToDay(int d)
//package com.java2s; //License from project: Artistic License public class Main { public static String intToDay(int d) { d = d % 7;/*from www . jav a 2s .com*/ switch (d) { case 0: return "Sun"; case 1: return "Mon"; case 2: return "Tues"; case 3: return "Wed"; case 4: return "Thurs"; case 5: return "Fri"; case 6: return "Sat"; } return "Unknown Day: " + d; } }