VOOZH about

URL: https://www.geeksforgeeks.org/java/offsettime-plusminutes-method-in-java-with-examples/

⇱ OffsetTime plusMinutes() method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

OffsetTime plusMinutes() method in Java with examples

Last Updated : 2 Jan, 2019
The plusMinutes() method of OffsetTime class is used to add specified number of Minutes value to this OffsetTime and return the result as a OffsetTime object. This instant is immutable. The calculation wraps around midnight. Syntax:
public OffsetTime plusMinutes(long MinutesToAdd)
Parameters: This method accepts a single parameter MinutesToAdd which is the value of Minutes to be added, it can be a negative value. Return value: This method returns a OffsetTime based on this time with the Minutes added. Below programs illustrate the plusMinutes() method: Program 1:
Output:
OffsetTime before addition: 14:25:10+11:00
OffsetTime after addition: 15:20:10+11:00
Program 2:
Output:
OffsetTime before addition: 14:25:10+11:00
OffsetTime after addition: 04:25:10+11:00
References: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#plusMinutes-long-
Comment