Here you can find the source of getDayOfMonthSuffix(final int day)
private final static String getDayOfMonthSuffix(final int day)
//package com.java2s; //License from project: BEER-WARE LICENSE public class Main { private final static String[] daySuffixes = // 0 1 2 3 4 5 6 7 8 9 { "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th", // 10 11 12 13 14 15 16 17 18 19 "th", "th", "th", "th", "th", "th", "th", "th", "th", "th", // 20 21 22 23 24 25 26 27 28 29 "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th", // 30 31 "th", "st" }; private final static String getDayOfMonthSuffix(final int day) { return daySuffixes[day]; }/*from www . ja va 2s . c om*/ }