LocalDateTime withMinute(int minute) example
Description
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 w ww. j ava2 s . com
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.