ZonedDateTime withMinute(int minute) example
Description
ZonedDateTime withMinute(int minute)
returns a copy of this ZonedDateTime
with the minute-of-hour value altered.
Syntax
withMinute
has the following syntax.
public ZonedDateTime withMinute(int minute)
Example
The following example shows how to use withMinute
.
import java.time.ZonedDateTime;
/*from ww w .j ava2 s . co m*/
public class Main {
public static void main(String[] args) {
ZonedDateTime dateTime = ZonedDateTime.now();
ZonedDateTime n = dateTime.withMinute(14);
System.out.println(n);
}
}
The code above generates the following result.