OffsetDateTime plusWeeks(long weeks)
returns a copy of this OffsetDateTime with the specified period in weeks added.
plusWeeks
has the following syntax.
public OffsetDateTime plusWeeks(long weeks)
The following example shows how to use plusWeeks
.
import java.time.OffsetDateTime; public class Main { public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.now(); OffsetDateTime d = o.plusWeeks(20); System.out.println(d); } }
The code above generates the following result.