LocalTime with(TemporalField field, long newValue)
returns a copy of this time with the specified field set to a new value.
with
has the following syntax.
public LocalTime with(TemporalField field, long newValue)
The following example shows how to use with
.
import java.time.LocalTime; import java.time.temporal.ChronoField; // ww w . ja va2s. c o m public class Main { public static void main(String[] args) { LocalTime l = LocalTime.now(); LocalTime s = l.with(ChronoField.HOUR_OF_DAY,4); System.out.println(s); } }
The code above generates the following result.