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

com.github.geekonjava.query.specification.custom.OrSpecification Maven / Gradle / Ivy

The newest version!
package com.github.geekonjava.query.specification.custom;

import com.github.geekonjava.query.criteria.Criteria;
import com.github.geekonjava.query.specification.Specification;

public class OrSpecification implements Specification {

  @Override
  public boolean match(T item, Criteria one, Criteria other) {
    return one.match(item) || other.match(item);
  }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy