nl.vpro.domain.api.SimpleRangeMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
/*
* Copyright (C) 2013 All rights reserved
* VPRO The Netherlands
*/
package nl.vpro.domain.api;
import javax.xml.bind.annotation.XmlTransient;
/**
* @author Michiel Meeuwissen
* @since 5.13
*/
@XmlTransient
public abstract class SimpleRangeMatcher> extends RangeMatcher {
public SimpleRangeMatcher() {
}
protected SimpleRangeMatcher(V begin, V end) {
super(begin, end);
}
protected SimpleRangeMatcher(V begin, V end, Boolean inclusiveEnd) {
super(begin, end, inclusiveEnd);
}
protected SimpleRangeMatcher(V begin, V end, Boolean inclusiveEnd, Match match) {
super(begin, end, inclusiveEnd, match);
}
@Override
public boolean test(V t) {
return valueTest(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy