Thursday, July 4, 2024
HomeLanguagesJavaYear adjustInto() Method in Java with Examples

Year adjustInto() Method in Java with Examples

adjustInto() method of the Year class used to adjusts the passed temporal object to have this year on which this method is applied.This instance is immutable and unaffected by this method call.

Syntax:

public Temporal adjustInto(Temporal temporal)

Parameters: This method accepts temporal as parameter which is the target temporal object to be adjusted. It should not be null.

Return value: This method returns the adjusted object.

Exception: This method throws following Exceptions:

  • DateTimeException – if unable to make the adjustment.
  • ArithmeticException – if numeric overflow occurs.

Below programs illustrate the adjustInto() method:
Program 1:




// Java program to demonstrate
// Year.adjustInto() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a Year object
        Year yr
            = Year.of(2019);
  
        // create a temporal object
        LocalDate date = LocalDate.parse("2007-12-03");
  
        // print instance
        System.out.println("LocalDate :"
                           + date);
  
        // apply adjustInto method of Year class
        LocalDate updatedlocal = (LocalDate)yr.adjustInto(date);
  
        // print instance
        System.out.println("LocalDate after"
                           + " applying adjustInto method: "
                           + updatedlocal);
    }
}


Output:

LocalDate :2007-12-03
LocalDate after applying adjustInto method: 2019-12-03

Program 2:




// Java program to demonstrate
// Year.adjustInto() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a Year object
        Year yr
            = Year.of(2032);
  
        // create a temporal object
        LocalDate date = LocalDate.parse("2017-01-13");
  
        // print instance
        System.out.println("LocalDate :"
                           + date);
  
        // apply adjustInto method of Year class
        LocalDate updatedlocal = (LocalDate)yr.adjustInto(date);
  
        // print instance
        System.out.println("LocalDate after"
                           + " applying adjustInto method: "
                           + updatedlocal);
    }
}


Output:

LocalDate :2017-01-13
LocalDate after applying adjustInto method: 2032-01-13

References: https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#adjustInto(java.time.temporal.Temporal)

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments