ZonedDateTime.PlusWeeks(Int64) Method

Definition

Returns a copy of this ZonedDateTime with the specified number of weeks added.

[Android.Runtime.Register("plusWeeks", "(J)Ljava/time/ZonedDateTime;", "", ApiSince=26)]
public Java.Time.ZonedDateTime? PlusWeeks(long weeks);
[<Android.Runtime.Register("plusWeeks", "(J)Ljava/time/ZonedDateTime;", "", ApiSince=26)>]
member this.PlusWeeks : int64 -> Java.Time.ZonedDateTime

Parameters

weeks
Int64

the weeks to add, may be negative

Returns

a ZonedDateTime based on this date-time with the weeks added, not null

Attributes

Remarks

Returns a copy of this ZonedDateTime with the specified number of weeks added. This operates on the local time-line, adding weeks to the local date-time. This is then converted back to a ZonedDateTime, using the zone ID to obtain the offset. When converting back to ZonedDateTime, if the local date-time is in an overlap, then the offset will be retained if possible, otherwise the earlier offset will be used. If in a gap, the local date-time will be adjusted forward by the length of the gap. This instance is immutable and unaffected by this method call.

Java reference for java.time.ZonedDateTime.plusWeeks.

Applies to