Uses of Class
com.luchersol.core.specialized_checkers.time.temporal.CheckerLocalDateTime
Packages that use CheckerLocalDateTime
Package
Description
Specialized checkers for Java 8+ temporal types.
-
Uses of CheckerLocalDateTime in com.luchersol.core.specialized_checkers.time.temporal
Subclasses with type arguments of type CheckerLocalDateTime in com.luchersol.core.specialized_checkers.time.temporalModifier and TypeClassDescriptionclassA specialized checker forLocalDateTimeinstances, providing fluent API methods to assert temporal properties such as being before/after another date-time, inclusivity checks, range validations, and whether a date-time lies in the past or future relative to the system clock.Classes in com.luchersol.core.specialized_checkers.time.temporal that implement interfaces with type arguments of type CheckerLocalDateTimeModifier and TypeClassDescriptionclassA specialized checker forLocalDateTimeinstances, providing fluent API methods to assert temporal properties such as being before/after another date-time, inclusivity checks, range validations, and whether a date-time lies in the past or future relative to the system clock.Methods in com.luchersol.core.specialized_checkers.time.temporal that return CheckerLocalDateTimeModifier and TypeMethodDescriptionstatic CheckerLocalDateTimeCheckerLocalDateTime.check(LocalDateTime localdatetime) Creates a new CheckerLocalDateTime instance for the given local date-time with a default name.static CheckerLocalDateTimeCheckerLocalDateTime.check(LocalDateTime localdatetime, String name) Creates a new CheckerLocalDateTime instance for the given local date-time and name.CheckerLocalDateTime.inRange(LocalDateTime date_1, LocalDateTime date_2) Checks if the local date-time is within the specified range (exclusive).CheckerLocalDateTime.isAfter(LocalDateTime date) Checks if the local date-time is after the specified date-time.CheckerLocalDateTime.isAfterOrEqual(LocalDateTime date) Checks if the local date-time is after or equal to the specified date-time.CheckerLocalDateTime.isBefore(LocalDateTime date) Checks if the local date-time is before the specified date-time.CheckerLocalDateTime.isBeforeOrEqual(LocalDateTime date) Checks if the local date-time is before or equal to the specified date-time.CheckerLocalDateTime.isFuture()Checks if the local date-time is in the future (after the current date-time).CheckerLocalDateTime.isPast()Checks if the local date-time is in the past (before the current date-time).protected CheckerLocalDateTimeCheckerLocalDateTime.self()Returns this instance (for fluent API usage).