OffsetDateTime plusYears() method in Java with examples Last Updated : 17 Dec, 2018 Comments Improve Suggest changes Like Article Like Report The plusYears() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of years added to the parsed date and time. Syntax: public OffsetDateTime plusYears(long years) Parameter: This method accepts a single parameter years which specifies the years to be added to the parsed date. It can be negative also, in that case, it subtracts the number of years to it. Return Value: It returns an OffsetDateTime based on this date-time with the years added and not null. Exceptions: The program throws a DateTimeException when it exceeds the supported data and time range. Below programs illustrate the plusYears() method: Program 1: Java // Java program to demonstrate the plusYears() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00"); // Prints dates System.out.println("Date1: " + date1); // Subtracts the number of years System.out.println("Date1 after adding years: " + date1.plusYears(-120)); } } Output: Date1: 2018-12-12T13:30:30+05:00 Date1 after adding years: 1898-12-12T13:30:30+05:00 Program 2 : Java // Java program to demonstrate the plusYears() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00"); // Prints dates System.out.println("Date1: " + date1); // Subtracts the number of years System.out.println("Date1 after adding years: " + date1.plusYears(140)); } } Output: Date1: 2018-12-12T13:30:30+05:00 Date1 after adding years: 2158-12-12T13:30:30+05:00 Reference: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#plusYears(long) Comment More infoAdvertise with us Next Article OffsetDateTime plusYears() method in Java with examples G gopaldave Follow Improve Article Tags : Java Java-Functions Java-time package Java-OffsetDateTime Practice Tags : Java Similar Reads OffsetDateTime plusDays() method in Java with examples The plusDays() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of days added to the parsed date and time. Syntax: public OffsetDateTime plusDays(long days) Parameter: This method accepts a single parameter days which specifies the days to be add 2 min read OffsetDateTime plusNanos() method in Java with examples The plusNanos() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of nanoseconds added to the parsed date and time. Syntax: public OffsetDateTime plusNanos(long nanoseconds) Parameter: This method accepts a single parameter nanoseconds which speci 2 min read OffsetDateTime plusWeeks() method in Java with examples The plusWeeks() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of weeks added to the parsed date and time. Syntax: public OffsetDateTime plusWeeks(long weeks) Parameter: This method accepts a single parameter weeks which specifies the weeks to 2 min read OffsetDateTime plusSeconds() method in Java with examples The plusSeconds() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of seconds added to the parsed date and time. Syntax: public OffsetDateTime plusSeconds(long seconds) Parameter: This method accepts a single parameter seconds which specifies the 2 min read OffsetDateTime plusMinutes() method in Java with examples The plusMinutes() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of minutes added to the parsed date and time. Syntax: public OffsetDateTime plusMinutes(long minutes) Parameter: This method accepts a single parameter minutes which specifies the 2 min read Like