OffsetTime plusMinutes() method in Java with examples

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:




// Java program to demonstrate
// OffsetTime.plusMinutes() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a OffsetTime object
        OffsetTime time
            = OffsetTime.parse("14:25:10+11:00");
  
        // print OffsetTime
        System.out.println("OffsetTime before addition: "
                           + time);
  
        // add 55 Minutes using plusMinutes()
        OffsetTime value = time.plusMinutes(55);
  
        // print result
        System.out.println("OffsetTime after addition: "
                           + value);
    }
}


Output:

OffsetTime before addition: 14:25:10+11:00
OffsetTime after addition: 15:20:10+11:00

Program 2:




// Java program to demonstrate
// OffsetTime.plusMinutes() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a OffsetTime object
        OffsetTime time
            = OffsetTime.parse("14:25:10+11:00");
  
        // print OffsetTime
        System.out.println("OffsetTime before addition: "
                           + time);
  
        // add -600 Minutes using plusMinutes()
        OffsetTime value = time.plusMinutes(-600);
  
        // print result
        System.out.println("OffsetTime after addition: "
                           + value);
    }
}


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-