Android Month String Get getLongMonthString(int month)

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

Description

get Long Month String

Declaration

public static String getLongMonthString(int month) 

Method Source Code

//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
}

Related

  1. getCurrentMonth()
  2. getMonthNames()
  3. getMonthNames(Locale l, int len)
  4. getShortMonths()
  5. getShortMonthString(int month)
  6. GetMonthName(int month)
  7. intMonthToString(int month)