![JAR search and dependency download from the Maven repository](/logo.png)
com.pivotallabs.greatexpectations.matchers.DateMatcher Maven / Gradle / Ivy
package com.pivotallabs.greatexpectations.matchers;
import com.pivotallabs.greatexpectations.MatcherOf;
import java.util.Date;
@MatcherOf(Date.class)
public class DateMatcher> extends ComparableMatcher {
public boolean toBeLaterThan(T expectedDateThreshold) {
return toBeGreaterThan(expectedDateThreshold);
}
public boolean toBeEarlierThan(T expectedDateThreshold) {
return toBeLessThan(expectedDateThreshold);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy