Java Month isNumMonth(int m)

Here you can find the source of isNumMonth(int m)

Description

is Num Month

License

Open Source License

Declaration

private static boolean isNumMonth(int m) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static boolean isNumMonth(int m) {
        return m >= 1 && m <= 12;
    }//  w w  w  .  jav  a 2  s .co  m
}

Related

  1. getTotalMonths(long time)
  2. getYMonth(String dateFromDB)
  3. impleMonth(int month)
  4. intToMonth(int m)
  5. isMonthInRange(int month)
  6. isQuarterMonth(String[] types)
  7. isSameMonth(String preMonth, String month)
  8. issueMonth(int issue1, int issue2)
  9. issueMonthNum(int issue1, int issue2)