LocalDate.IsAfter(IChronoLocalDate) Method

Definition

Checks if this date is after the specified date.

[Android.Runtime.Register("isAfter", "(Ljava/time/chrono/ChronoLocalDate;)Z", "", ApiSince=26)]
public bool IsAfter(Java.Time.Chrono.IChronoLocalDate? other);
[<Android.Runtime.Register("isAfter", "(Ljava/time/chrono/ChronoLocalDate;)Z", "", ApiSince=26)>]
abstract member IsAfter : Java.Time.Chrono.IChronoLocalDate -> bool
override this.IsAfter : Java.Time.Chrono.IChronoLocalDate -> bool

Parameters

other
IChronoLocalDate

the other date to compare to, not null

Returns

true if this date is after the specified date

Implements

Attributes

Remarks

Checks if this date is after the specified date. This checks to see if this date represents a point on the local time-line after the other date. This method only considers the position of the two dates on the local time-line. It does not take into account the chronology, or calendar system. This is different from the comparison in compareTo(ChronoLocalDate), but is the same approach as ChronoLocalDate.timeLineOrder().

Java reference for java.time.LocalDate.isAfter.

Applies to