Here you can find the source of getLongMonthString(int month)
public static String getLongMonthString(int month)
//package com.java2s; public class Main { public static final String[] MONTHS_LONG = { "January", "Febuary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; public static String getLongMonthString(int month) { return MONTHS_LONG[month]; }//from w ww . j a v a 2s . c o m }