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

com.github.geekonjava.query.specification.custom.AndSpecification 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 AndSpecification 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