OffsetDateTime plusSeconds() method in Java with examples Last Updated : 17 Dec, 2018 Comments Improve Suggest changes Like Article Like Report 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 seconds to be added to the parsed date. It can be negative also, in that case, it subtracts the number of seconds to it. Return Value: It returns an OffsetDateTime based on this date-time with the seconds added and not null. Exceptions: The program throws a DateTimeException when it exceeds the supported data and time range. Below programs illustrate the plusSeconds() method: Program 1: Java // Java program to demonstrate the plusSeconds() 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 seconds System.out.println("Date1 after adding seconds: " + date1.plusSeconds(-120)); } } Output: Date1: 2018-12-12T13:30:30+05:00 Date1 after adding seconds: 2018-12-12T13:28:30+05:00 Program 2: Java // Java program to demonstrate the plusSeconds() 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 seconds System.out.println("Date1 after adding seconds: " + date1.plusSeconds(140)); } } Output: Date1: 2018-12-12T13:30:30+05:00 Date1 after adding seconds: 2018-12-12T13:32:50+05:00 Reference: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#plusSeconds(long) Comment More infoAdvertise with us Next Article OffsetDateTime plusSeconds() method in Java with examples gopaldave Follow Improve Article Tags : Java Java-Functions Java-time package Java-OffsetDateTime Practice Tags : Java Similar Reads OffsetTime plusSecond() method in Java with Examples The plusSeconds() method of OffsetTime class is used to add specified number of seconds value to this OffsetTime and return the result as a OffsetTime object. This instant is immutable. The calculation wraps around midnight. Syntax: public OffsetTime plusSeconds(long SecondsToAdd) Parameters: This m 2 min read OffsetDateTime plusMonths() method in Java with examples The plusMonths() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of months added to the parsed date and time. Syntax: public OffsetDateTime plusMonths(long months) Parameter: This method accepts a single parameter months which specifies the mont 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 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 plusYears() method in Java with examples 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 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 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 OffsetTime plus() method in Java with examples In OffsetTime class, there are two types of plus() method depending upon the parameters passed to it. plus(long amountToAdd, TemporalUnit unit) plus() method of a OffsetTime class used to return a copy of this OffsetTime with the specified amount of unit added.If it is not possible to add the amount 2 min read OffsetTime plusNanos() method in Java with Examples The plusNanos() method of OffsetTime class used to add specified no of nanoseconds value to this OffsetTime and return the result as a OffsetTime object. This instant is immutable. The calculation wraps around midnight. Syntax: public OffsetTime plusNanos(long nanosecondsToAdd) Parameters: This meth 2 min read OffsetDateTime until() Method in Java with Examples until() method of the OffsetDateTime class used to calculate the amount of time between two OffsetDateTime objects using TemporalUnit. The start and end points are this and the specified OffsetDateTime passed as a parameter. The result will be negative if the end is before the start. The calculation 2 min read Like