java.time.YearMonth.adjustInto() Method Example



Description

The java.time.YearMonth.adjustInto(Temporal temporal) method adjusts the specified temporal object to have this year-month.

Declaration

Following is the declaration for java.time.YearMonth.adjustInto(Temporal temporal) method.

public Temporal adjustInto(Temporal temporal)

Parameters

temporal − the temporal object to adjust, not null.

Return Value

an object of the same type with the adjustment made, not null.

Exception

  • DateTimeException − if unable to add.

  • ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.YearMonth.adjustInto(Temporal temporal) method.

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth year = YearMonth.of(2015,12);
      
      LocalDate date = LocalDate.now();
      System.out.println(date);  

      date = (LocalDate)year.adjustInto(date);
      System.out.println(date);  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-03-27
2015-12-27
Advertisements