Here you can find the source of convertIntToDayOfWeek(int day)
static String convertIntToDayOfWeek(int day)
//package com.java2s; //License from project: Apache License public class Main { static String convertIntToDayOfWeek(int day) { switch (day) { case 1:/*from w ww .ja v a 2 s . c o m*/ return "MON"; case 2: return "TUE"; case 3: return "WED"; case 4: return "THU"; case 5: return "FRI"; case 6: return "SAT"; case 7: return "SUN"; default: return null; } } }