java.time.Year.adjustInto() Method Example



Description

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

Declaration

Following is the declaration for java.time.Year.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.Year.adjustInto(Temporal temporal) method.

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.Year;

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

      Year year = Year.of(2015);
      
      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-04-01
2015-04-01
Advertisements