Instant plus(long amountToAdd, TemporalUnit unit)
returns a copy of this instant with the specified amount added.
plus
has the following syntax.
public Instant plus(long amountToAdd, TemporalUnit unit)
The following example shows how to use plus
.
import java.time.Instant; import java.time.temporal.ChronoUnit; /*from w ww . j a va 2 s. c om*/ public class Main { public static void main(String[] args) { Instant instant = Instant.parse("2014-12-03T10:15:30.00Z"); instant = instant.plus(100,ChronoUnit.DAYS); System.out.println(instant); } }
The code above generates the following result.