All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.domain.api.SimpleRangeMatcher Maven / Gradle / Ivy

Go to download

Contains the objects used by the Frontend API, like forms and result objects

There is a newer version: 8.3.3
Show newest version
/*
 * 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