OffsetTime.AtDate(LocalDate) Method

Definition

Combines this time with a date to create an OffsetDateTime.

[Android.Runtime.Register("atDate", "(Ljava/time/LocalDate;)Ljava/time/OffsetDateTime;", "", ApiSince=26)]
public Java.Time.OffsetDateTime? AtDate(Java.Time.LocalDate? date);
[<Android.Runtime.Register("atDate", "(Ljava/time/LocalDate;)Ljava/time/OffsetDateTime;", "", ApiSince=26)>]
member this.AtDate : Java.Time.LocalDate -> Java.Time.OffsetDateTime

Parameters

date
LocalDate

the date to combine with, not null

Returns

the offset date-time formed from this time and the specified date, not null

Attributes

Remarks

Combines this time with a date to create an OffsetDateTime. This returns an OffsetDateTime formed from this time and the specified date. All possible combinations of date and time are valid.

Java reference for java.time.OffsetTime.atDate.

Applies to