LocalTime.AtDate(LocalDate) Method

Definition

Combines this time with a date to create a LocalDateTime.

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

Parameters

date
LocalDate

the date to combine with, not null

Returns

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

Attributes

Remarks

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

Java reference for java.time.LocalTime.atDate.

Applies to