LocalDate with(TemporalField field, long newValue)
returns a copy
of this date with the specified field set to a new value.
with
has the following syntax.
public LocalDate with(TemporalField field, long newValue)
The following example shows how to use with
.
import java.time.LocalDate; import java.time.temporal.ChronoField; /* w w w . ja va 2 s.c o m*/ public class Main { public static void main(String[] args) { LocalDate a = LocalDate.of(2014, 6, 30); LocalDate b = a.with(ChronoField.YEAR,2015); System.out.println(b); } }
The code above generates the following result.