ChronoLocalDate plus(TemporalAmount) method in Java with Examples Last Updated : 29 Apr, 2019 Comments Improve Suggest changes Like Article Like Report plus(TemporalAmount) method of a ChronoLocalDate interface used to return a copy of this ChronoLocalDate with the specified amount added ChronoLocalDate.The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface. Syntax: public ChronoLocalDate plus(TemporalAmount amountToAdd) Parameters: This method accepts one single parameter amountToAdd which is the amount to add, It should not be null. Return value: This method returns ChronoLocalDate based on this date-time with the addition made. Below programs illustrate the plus() method: Program 1: Java // Java program to demonstrate // ChronoLocalDate.plus() method import java.time.*; import java.time.chrono.*; public class GFG { public static void main(String[] args) { // create a ChronoLocalDate object ChronoLocalDate zonedlt = LocalDate.parse("2018-12-06"); // add 100 Days to ChronoLocalDate ChronoLocalDate value = zonedlt.plus(Period.ofDays(100)); // print result System.out.println("ChronoLocalDate after adding Days: " + value); } } Output: ChronoLocalDate after adding Days: 2019-03-16 References: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#plus-java.time.temporal.TemporalAmount- Comment More infoAdvertise with us Next Article ChronoLocalDate plus(TemporalAmount) method in Java with Examples K Kirti_Mangal Follow Improve Article Tags : Java Java-Functions Java-time package Java-ChronoLocalDate Practice Tags : Java Similar Reads ChronoLocalDateTime plus(TemporalAmount) method in Java with Examples The plus() method of a ChronoLocalDateTime interface is used to return a copy of this ChronoLocalDateTime with the specified amount added to date-time. The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface. Syntax: default ChronoLocalDateTime 1 min read ChronoLocalDate minus(TemporalAmount) method in Java with Examples minus(TemporalAmount) method of a ChronoLocalDate interface used to returns a copy of this ChronoLocalDate with the specified amount subtracted to ChronoLocalDate.The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface.Syntax: public ChronoLocal 1 min read ChronoLocalDate plus(long, TemporalUnit) method in Java with Examples plus(long, TemporalUnit) method of a ChronoLocalDate interface used to return a copy of this ChronoLocalDate with the specified amount of unit added to ChronoLocalDate.If it is not possible to add the amount, because the unit is not supported or for some other reason, an exception is thrown.This ins 1 min read ChronoLocalDateTime minus(TemporalAmount) method in Java with Examples The minus() method of a ChronoLocalDateTime interface is used to return a copy of this ChronoLocalDateTime with the specified amount subtracted to date-time. The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface.Syntax: default ChronoLocalDate 1 min read ChronoZonedDateTime plus(TemporalAmount) method in Java with Examples plus() method of a ChronoZonedDateTime class used to returns a copy of this date-time with the specified amount added to date-time. The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface. Syntax: public ChronoZonedDateTime plus(TemporalAmount a 1 min read Like