Java Month getMonths()

Here you can find the source of getMonths()

Description

get Months

License

Open Source License

Declaration

public static String[] getMonths() 

Method Source Code

//package com.java2s;

public class Main {
    public static String[] getMonths() {
        String months[] = { "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12" };
        return months;
    }//from   ww  w.  ja  va 2 s .com
}

Related

  1. getMonthLength(int year, int m)
  2. getMonthLength(int year, int month)
  3. getMonthMaxDate(String str)
  4. getMonthOfNextQuarter(String yearAndMonth)
  5. getMonthRange(String start, String end)
  6. getMonths(String strDateBegin, String strDateEnd)
  7. getMonthTime(String allDate)
  8. getMonthToMonth(int month)
  9. getMonthTotal(Double bsAmount, Double susAmount, Double changeRate)