This method returns a new date based on this date with the specified period added. The amount is typically {@link Period} but may be any other type implementingthe {@link TemporalAmount} interface.The calculation is delegated to the specified adjuster, which typically calls back to {@link #plus(long,TemporalUnit)}.
This instance is immutable and unaffected by this method call. @param amount the amount to add, not null @return a {@code LocalDate} based on this date with the addition made, not null @throws DateTimeException if the addition cannot be made @throws ArithmeticException if numeric overflow occurs
|
|