Java Day in Month toMonthFirstDay(String month)

Here you can find the source of toMonthFirstDay(String month)

Description

to Month First Day

License

Open Source License

Declaration

public static String toMonthFirstDay(String month) 

Method Source Code

//package com.java2s;

public class Main {
    public static String toMonthFirstDay(String month) {
        return month + "-01";
    }/*  ww  w . jav a  2  s .  co m*/
}

Related

  1. isLastDayOfMonth(int day, int month, int year)
  2. maxDayOfMonth(int year, int month)
  3. monthDays(int y, int m)
  4. numDaysInMonth(int month)
  5. padMonthOrDay(String mod)
  6. validateDayOfMonth(int day)
  7. validateMonthDay(int nDate)
  8. weekOfMonth(int dayCount, int commonMonthIndex)