OffsetDateTime minusWeeks(long weeks) example
Description
OffsetDateTime minusWeeks(long weeks)
returns a copy of this OffsetDateTime with the specified period
in weeks subtracted.
Syntax
minusWeeks
has the following syntax.
public OffsetDateTime minusWeeks(long weeks)
Example
The following example shows how to use minusWeeks
.
import java.time.OffsetDateTime;
/*w ww. j a v a2 s. c o m*/
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.minusWeeks(120);
System.out.println(d);
}
}
The code above generates the following result.