OffsetDateTime plusWeeks(long weeks) example

Description

OffsetDateTime plusWeeks(long weeks) returns a copy of this OffsetDateTime with the specified period in weeks added.

Syntax

plusWeeks has the following syntax.


public OffsetDateTime plusWeeks(long weeks)

Example

The following example shows how to use plusWeeks.


import java.time.OffsetDateTime;
// w w w .  ja v  a  2  s.  com
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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset