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 de.hybris.platform.accountsummaryaddon.document.B2BDocumentDueDateRangePredicate.java

/**
 * Predicate uses to filter all B2B Documents for a specific range of due dates.
 * 
 */
public class B2BDocumentDueDateRangePredicate implements Predicate {

From source file com.phoenixst.collections.NotPredicate.java

/**
 *  A <code>Predicate</code> which returns the logical converse of its
 *  operand.
 *
 *  <P>This is mostly equivalent to the class of the same name in
 *  Jakarta Commons-Collections 3.0.  This version exposes its

From source file org.talend.dq.indicators.graph.EdgeDisplayPredicate.java

/**
 * DOC bZhou class global comment. Detailled comment
 */
public class EdgeDisplayPredicate implements Predicate {

    public final static int DEFAULT_WEIGHT = 0;

From source file com.tacitknowledge.util.migration.PatchRollbackPredicate.java

/**
 * This class defines a predicate for CollectionUtils which evaluates if a
 * given RollbackableMigrationTask should remain in the collection
 *
 * @author Artie Pesh-Imam (apeshimam@tacitknowledge.com)
 * @see Predicate

From source file com.phoenixst.plexus.EdgePredicate.java

/**
 *  A general interface for <code>Predicates</code> testing {@link
 *  Graph.Edge Graph.Edges} that can be piecewise defined.  These
 *  objects can be used by:
 *
 *  <UL>

From source file org.xlcloud.console.menu.MenuGroupAllowancePredicate.java

/**
 * Predicate that indicates whether given menu group should be displayed for the current user.
 * Group is displayed only if it contains allowed menu items: {@link MenuGroup#hasAnyAllowedMenuItem(EntitlementEngine)}
 * 
 * @author Konrad Krl, AMG.net
 */

From source file org.xlcloud.console.menu.MenuItemAllowancePredicate.java

/**
 * Indicates whether user should see specified menu item.
 * Verification is provided by {@link EntitlementEngine} based on the menu item action and path.
 * 
 * @author Konrad Krl, AMG.net
 */

From source file com.phoenixst.collections.InstanceofPredicate.java

/**
 *  A <code>Predicate</code> which tests the {@link #evaluate
 *  evaluate( object )} argument for being an instance of a particular
 *  class.
 *
 *  <P>This is mostly equivalent to the class of the same name in

From source file org.openconcerto.sql.model.graph.LabelPredicate.java

/**
 * Evaluate to <tt>true</tt> if the label of the passed Link is equals to its field.
 * 
 * @author ILM Informatique 21 juil. 2004
 */
public class LabelPredicate implements Predicate {

From source file com.phoenixst.collections.ContainsPredicate.java

/**
 *  A <code>Predicate</code> which tests whether an object is an
 *  element of a <code>Collection</code>.
 *
 *  @version    $Revision: 1.2 $
 *  @author     Ray A. Conner