MonthDay with() Method in Java with Examples
with(Month month) method of the MonthDay class used to alter the month-of-year of MonthDay object using month passed as a parameter and after that method returns the copy of altered MonthDay.If the day-of-month value is invalid for the specified month after altering operation, the day will be adjusted to the last valid day-of-month.
Syntax:
public MonthDay with(Month month)
Parameters: This method accepts month as parameter which is the month-of-year to set in the returned month-day.
Return value: This method returns a MonthDay based on this month-day with the requested month
Below programs illustrate the with() method:
Program 1:
// Java program to demonstrate // MonthDay.with() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create a MonthDay object MonthDay monthday = MonthDay.of( 8 , 28 ); // print instance System.out.println( "MonthDay before" + " applying method: " + monthday); // apply with method of MonthDay class MonthDay updatedlocal = monthday.with(Month.OCTOBER); // print instance System.out.println( "MonthDay after" + " applying method: " + updatedlocal); } } |
MonthDay before applying method: --08-28 MonthDay after applying method: --10-28
Program 2:
// Java program to demonstrate // MonthDay.with() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create a MonthDay object MonthDay monthday = MonthDay.of( 10 , 31 ); // print instance System.out.println( "MonthDay before" + " applying method: " + monthday); // apply with method of MonthDay class MonthDay updatedlocal = monthday.with(Month.FEBRUARY); // print instance System.out.println( "MonthDay after" + " applying method: " + updatedlocal); } } |
MonthDay before applying method: --10-31 MonthDay after applying method: --02-29
References: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#with(java.time.Month)
Recommended Posts:
- MonthDay get() method in Java with Examples
- MonthDay from() method in Java with Examples
- MonthDay withDayOfMonth() Method in Java with Examples
- MonthDay withMonth() Method in Java with Examples
- MonthDay getMonth() method in Java with Examples
- MonthDay getDayOfMonth() method in Java with Examples
- MonthDay adjustInto() method in Java with Examples
- MonthDay getLong() method in Java with Examples
- MonthDay query() method in Java with Examples
- MonthDay range() method in Java with Examples
- MonthDay getMonthValue() method in Java with Examples
- MonthDay atYear() method in Java with Examples
- MonthDay toString() Method in Java with Examples
- MonthDay format() method in Java with Examples
- MonthDay isValidYear() Method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.