Java Month impleMonth(int month)

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

Description

imple Month

License

Open Source License

Declaration

private static String impleMonth(int month) 

Method Source Code

//package com.java2s;

public class Main {

    private static String impleMonth(int month) {
        String monthStr = new Integer(month).toString();
        if (monthStr.length() == 1) {
            monthStr = "0" + monthStr;
        }/*from w  ww  .j a va  2  s . c  o m*/
        return monthStr;
    }
}

Related

  1. getSecondByMonth(int month)
  2. getStatis_month()
  3. getTargetMonth(Integer targetYm)
  4. getTotalMonths(long time)
  5. getYMonth(String dateFromDB)
  6. intToMonth(int m)
  7. isMonthInRange(int month)
  8. isNumMonth(int m)
  9. isQuarterMonth(String[] types)