ZonedDateTime withMinute(int minute)
returns a copy of this ZonedDateTime
with the minute-of-hour value altered.
withMinute
has the following syntax.
public ZonedDateTime withMinute(int minute)
The following example shows how to use withMinute
.
import java.time.ZonedDateTime; 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.