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 org.sipfoundry.sipxconfig.device.FeatureFilter.java

public class FeatureFilter implements Predicate {
    private final String m_feature;

    public FeatureFilter(String feature) {
        m_feature = feature;
    }

From source file org.beangle.model.predicates.ValidEntityKeyPredicate.java

/**
 * ?
 * 
 * @author chaostone
 */
public class ValidEntityKeyPredicate implements Predicate {

From source file edu.uci.ics.jung.graph.predicates.GPredicate.java

/**
 * @author Joshua O'Madadhain
 */
public abstract class GPredicate implements Predicate {

    public boolean isInitializationPredicate = false;

From source file org.beangle.model.predicates.IdNotInPredicate.java

public class IdNotInPredicate implements Predicate {

    private final Set<Serializable> idSet;

    public IdNotInPredicate(Collection<Serializable> ids) {
        idSet = CollectUtils.newHashSet(ids);

From source file edu.uci.ics.jung.graph.predicates.UncopyablePredicate.java

/**
 * A tagging interface for predicates that should not be copied
 * along with their graph.  This interface should generally be implemented
 * by graph-specific constraints (e.g. <code>NotInGraphVertexPredicate</code>).
 * 
 * @author Joshua O'Madadhain

From source file edu.uci.ics.jung.graph.predicates.ThresholdPredicate.java

/**
 * A predicate which passes Numbers whose value satisfies a threshold requirement.
 *  
 * @author Joshua O'Madadhain
 */
public class ThresholdPredicate implements Predicate {

From source file edu.uci.ics.jung.graph.predicates.GraphPredicate.java

/**
 * 
 * @author Joshua O'Madadhain
 */
public abstract class GraphPredicate implements Predicate {
    /**

From source file adalid.util.sql.IsRootTable.java

/**
 * @author Jorge Campins
 */
public class IsRootTable implements Predicate {

    @Override

From source file info.evanchik.eclipse.karaf.core.features.RepositoryOnlyPredicate.java

/**
 * A {@link Predicate} implementation that returns {@code true} if the supplied
 * input is a {@link Repository}
 *
 * @author Stephen Evanchik (evanchsa@gmail.com)
 *

From source file info.evanchik.eclipse.karaf.core.features.FeatureOnlyPredicate.java

/**
 * A {@link Predicate} implementation that evaluates to {@code true} if the
 * supplied input is a {@link Feature}
 *
 * @author Stephen Evanchik (evanchsa@gmail.com)
 *