java.time.MonthDay.adjustInto() Method Example



Description

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

Declaration

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

public Temporal adjustInto(Temporal temporal)

Parameters

temporal − the target object to be adjusted, not null.

Return Value

the adjusted object, not null.

Exceptions

  • DateTimeException − if unable to make the adjustment.

  • ArithmeticException − if numeric overflow occurs.

Example

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

package com.tutorialspoint;

import java.time.MonthDay;
import java.time.ZonedDateTime;

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

      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date);  

      MonthDay date1 = MonthDay.parse("--12-30");
      date = (ZonedDateTime)date1.adjustInto(date);
      System.out.println(date);  
   }
}

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

2017-03-20T15:29:58.470+05:30[Asia/Calcutta]
2017-12-30T15:29:58.470+05:30[Asia/Calcutta]
Advertisements