Android Month String Get getReadableMonth(int month)

Here you can find the source of getReadableMonth(int month)

Description

get Readable Month

Declaration

public static String getReadableMonth(int month) 

Method Source Code

//package com.java2s;

public class Main {
    private static final String[] MONTH = new String[] { "January",
            "February", "March", "April", "May", "June", "July", "August",
            "September", "October", "November", "December" };

    public static String getReadableMonth(int month) {
        return MONTH[month - 1];
    }//from  w ww .j a v a 2s. co m
}

Related

  1. getCurMonthStr()
  2. getLastMonthStr()
  3. getMonthBefore(String format)
  4. getMonthString(int month, int abbrev)
  5. getMonthStringByIndex(int index)
  6. getCurrentMonth()
  7. getMonthNames()
  8. getMonthNames(Locale l, int len)
  9. getShortMonths()