Open In App

OffsetDateTime withMinute() method in Java with examples

Last Updated : 17 Dec, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

The withMinute() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the hour of the day altered as specified in the parameter.

Syntax:

public OffsetDateTime withMinute(int minute)

Parameter: This method accepts a single parameter minute which specifies the minute-of-hour to be set in the result which can range from 0 to 59.

Return Value: It returns a OffsetDateTime based on this date with the requested minute of the hour and not null.

Exceptions: The program throws a DateTimeException when the minute of the hour value is invalid or if the day-of-year is invalid.

Below programs illustrate the withMinute() method:

Program 1:




// Java program to demonstrate the withMinute() 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);
  
        // Changes the minute of day
        System.out.println("Date1 after altering minute of day: "
                           + date1.withMinute(20));
    }
}


Output:

Date1: 2018-12-12T13:30:30+05:00
Date1 after altering minute of day: 2018-12-12T13:20:30+05:00

Program 2:




// Java program to demonstrate the withMinute() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
        try {
            // Parses the date1
            OffsetDateTime date1
                = OffsetDateTime
                      .parse(
                          "2018-12-12T13:30:30+05:00");
  
            // Prints dates
            System.out.println("Date1: " + date1);
  
            // Changes the minute of day
            System.out.println("Date1 after altering minute of day: "
                               + date1.withMinute(27));
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}


Output:

Date1: 2018-12-12T13:30:30+05:00
Date1 after altering minute of day: 2018-12-12T13:27:30+05:00

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#withMinute(int)



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads