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.archive.util.Inverter.java

/**
 * A predicate that inverts another.
 * @author gojomo
 */
public class Inverter implements Predicate {
    Predicate innerPredicate;

From source file com.cyberway.issue.util.Inverter.java

/**
 * A predicate that inverts another.
 * @author gojomo
 */
public class Inverter implements Predicate {
    Predicate innerPredicate;

From source file org.apache.archiva.consumers.functors.PermanentConsumerPredicate.java

/**
 * Selects Consumers that are flaged as 'permanent'. 
 *
 *
 */
public class PermanentConsumerPredicate implements Predicate {

From source file net.javacoding.queue.Inverter.java

/**
 * A predicate that inverts another.
 *
 * @author gojomo
 */
public class Inverter implements Predicate {

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

/**
 * Checks if issue was active in this build (created or closed).
 * @author k.petrauskas
 */
public class IssueActivePredicate implements Predicate {

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

/**
 * Checks if issue is assigned to the specified release.
 * @author k.petrauskas
 */
public class IssueInReleasePredicate implements Predicate {
    /**

From source file hr.fer.zemris.vhdllab.platform.manager.workspace.collection.CompilableFilesFilter.java

public class CompilableFilesFilter implements Predicate {

    private static final Predicate INSTANCE = new CompilableFilesFilter();

    private CompilableFilesFilter() {
    }

From source file hr.fer.zemris.vhdllab.platform.manager.workspace.collection.SimulatableFilesFilter.java

public class SimulatableFilesFilter implements Predicate {

    private static final Predicate INSTANCE = new SimulatableFilesFilter();

    private SimulatableFilesFilter() {
    }

From source file org.sakaiproject.conditions.impl.NullPredicate.java

public class NullPredicate implements Predicate {

    public boolean evaluate(Object object) {
        throw new IllegalStateException(
                "Cannot call evaluate() on a NullPredicate. NullPredicate is a placeholder only.");
    }

From source file com.safetys.framework.jmesa.core.filter.FilterPredicate.java

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