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.motechproject.server.event.impl.ScheduledMessagePredicate.java

public class ScheduledMessagePredicate implements Predicate {

    private Set<String> keys = new HashSet<String>();
    private String care;
    private Date date;

From source file org.apache.openjpa.util.AbstractLRSProxyMap.java

/**
 * A map proxy designed for maps backed by extremely large result sets in
 * which each call to {@link #get} or {@link #containsKey} may perform a
 * database query. Changes to the map are tracked through a
 * {@link ChangeTracker}. This map has the following limitations:
 * <ul>

From source file org.egov.model.deduction.RemittanceBean.java

/**
 * @author manoranjan
 *
 */
public class RemittanceBean implements Predicate {

From source file com.projity.algorithm.IntervalGenerator.java

/**
 * Interface for all interval generators
 */
public interface IntervalGenerator extends Predicate {
    Object current(); // current item

From source file com.projity.functor.ReflectionPredicate.java

/**
 *
 */
public class ReflectionPredicate implements Predicate {

    Method method;

From source file com.projity.server.data.SerializeOptions.java

public class SerializeOptions implements Predicate {
    boolean publish = false;

    public SerializeOptions() {

    }

From source file com.projity.algorithm.DateInRangePredicate.java

/**
 * A predicate which tests whether an interval is enclosed in a range
 */
public class DateInRangePredicate implements Predicate, HasStartAndEnd {
    long start;
    long end;

From source file com.projity.grouping.core.transform.filtering.NodeFilter.java

/**
 *
 */
public abstract class NodeFilter extends CommonTransform implements Predicate {
    protected boolean showSummary = true;
    protected boolean showEmptyLines = true;

From source file com.projity.graphic.configuration.BarStyle.java

/**
 *
 */
public class BarStyle implements Predicate {
    //   static Log log = LogFactory.getLog(BarStyle.class);
    public static final String FORMULA_PREFIX = "BarStyle";

From source file TDS.Proctor.Web.presentation.backing.ApprovedRequests.java

class OppKeyPredicate implements Predicate {
    UUID _oppKey = null;

    public OppKeyPredicate(UUID oppKey) {
        this._oppKey = oppKey;
    }