Example usage for org.apache.commons.collections Predicate interface-usage

List of usage examples for org.apache.commons.collections Predicate interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections Predicate interface-usage.

Usage

From source file lt.kape1395.jenkins.ditz.model.IssueStatCategoryActivePredicate.java

/**
 * Selects active categories.
 * For example: releases that have new or closed issues.
 *
 * @author k.petrauskas
 */

From source file com.iggroup.oss.restdoclet.doclet.util.ParameterNamePredicate.java

/**
 * This predicate is used to search a parameter by its name.
 */
public class ParameterNamePredicate implements Predicate {

    /**

From source file com.iggroup.oss.restdoclet.doclet.util.ControllerTypePredicate.java

/**
 * This class is used to search a controller by its Java type.
 */
public class ControllerTypePredicate implements Predicate {

    /**

From source file org.jumpmind.db.util.MultiInstanceofPredicate.java

/**
 * A predicate that tests whether the object is of one of the configured types. 
 * 
 * @version $Revision: $
 */
public class MultiInstanceofPredicate implements Predicate {

From source file org.businessmanager.util.DefaultItemPredicate.java

public class DefaultItemPredicate implements Predicate {

    private Class<?> clazz;
    private Predicate predicate = null;

    public DefaultItemPredicate(Class<? extends HasDefault> typeClass) {

From source file sturesy.util.ValidVotePredicate.java

/**
 * A Predicate used for filtering Votes, which do not match the questionmodels
 * answersize
 * 
 * @author w.posdorfer
 * 

From source file org.apache.ddlutils.util.MultiInstanceofPredicate.java

/**
 * A predicate that tests whether the object is of one of the configured types. 
 * 
 * @version $Revision: $
 */
public class MultiInstanceofPredicate implements Predicate {

From source file com.ciphertool.zodiacengine.util.PlaintextPredicate.java

public class PlaintextPredicate implements Predicate {

    private Ciphertext ciphertext;

    public PlaintextPredicate(Ciphertext ciphertext) {
        this.ciphertext = ciphertext;

From source file com.discursive.jccook.collections.predicate.PropertyPredicate.java

public class PropertyPredicate implements Predicate {

    private String property;
    private Object matchValue = null;

    public PropertyPredicate(String property) {

From source file org.jmesa.core.filter.FilterPredicate.java

/**
 * Use the Jakarta Collections predicate pattern to filter out the table.
 * 
 * @since 2.0
 * @author Jeff Johnston
 */