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: