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

com.github.restup.query.criteria.OrCriteria Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.restup.query.criteria;

import java.util.List;

public class OrCriteria extends ListCriteria {

    public OrCriteria(List criteria) {
        super(criteria);
    }

    @Override
    public boolean filter(Object t) {
        for (ResourceQueryCriteria c : getCriteria()) {
            if (c.filter(t)) {
                return true;
            }
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy