Java Date Time - LocalDateTime withMinute(int minute) example








LocalDateTime withMinute(int minute) returns a copy of this LocalDateTime with the minute-of-hour value altered.

Syntax

withMinute has the following syntax.

public LocalDateTime withMinute(int minute)

Example

The following example shows how to use withMinute.

import java.time.LocalDateTime;
//from www.  j  a  v  a2  s.  c o m
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    LocalDateTime t = a.withMinute(34);
    
    System.out.println(t);
  }
}

The code above generates the following result.