Uses of Class
com.luchersol.core.specialized_checkers.time.temporal.CheckerLocalDate
Packages that use CheckerLocalDate
Package
Description
Specialized checkers for Java 8+ temporal types.
-
Uses of CheckerLocalDate in com.luchersol.core.specialized_checkers.time.temporal
Subclasses with type arguments of type CheckerLocalDate in com.luchersol.core.specialized_checkers.time.temporalModifier and TypeClassDescriptionclassA specialized checker forLocalDateinstances, providing fluent API methods to assert temporal properties such as being before/after another date, inclusivity checks, range validations, and whether a date lies in the past, future, or present.Classes in com.luchersol.core.specialized_checkers.time.temporal that implement interfaces with type arguments of type CheckerLocalDateModifier and TypeClassDescriptionclassA specialized checker forLocalDateinstances, providing fluent API methods to assert temporal properties such as being before/after another date, inclusivity checks, range validations, and whether a date lies in the past, future, or present.Methods in com.luchersol.core.specialized_checkers.time.temporal that return CheckerLocalDateModifier and TypeMethodDescriptionstatic CheckerLocalDateCreates a new CheckerLocalDate instance for the given local date with a default name.static CheckerLocalDateCreates a new CheckerLocalDate instance for the given local date and name.Checks if the local date is within the specified range (exclusive).Checks if the local date is after the specified date.CheckerLocalDate.isAfterOrEqual(LocalDate date) Checks if the local date is after or equal to the specified date.Checks if the local date is before the specified date.CheckerLocalDate.isBeforeOrEqual(LocalDate date) Checks if the local date is before or equal to the specified date.CheckerLocalDate.isFuture()Checks if the local date is in the future (after the current date).CheckerLocalDate.isFutureOrPresent()Checks if the local date is in the future or present (not before the current date).CheckerLocalDate.isPast()Checks if the local date is in the past (before the current date).CheckerLocalDate.isPastOrPresent()Checks if the local date is in the past or present (not after the current date).protected CheckerLocalDateCheckerLocalDate.self()Returns this instance (for fluent API usage).