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.xlcloud.console.virtualClusterDefinitions.utils.ParameterByNamePredicate.java

/**
 * Predicate that matches parameters with the same name as nameQuery given in the constructor.
 * @author Konrad Krl, AMG.net
 */
public class ParameterByNamePredicate implements Predicate {

From source file org.xlcloud.console.virtualClusters.controllers.wizard.predicates.ApplicationByIdPredicate.java

/**
 * Predicate class used to check whether the application id matches to the given id.
 * @author "Konrad Krl", AMG.net
 */
public class ApplicationByIdPredicate implements Predicate {
    private final Long applicationId;

From source file org.xlcloud.console.virtualClusters.controllers.wizard.predicates.ApplicationByTypePredicate.java

/**
 * Predicate class used to check whether the application type matches to the given type.
 * @author "Konrad Krl", AMG.net
 */
public class ApplicationByTypePredicate implements Predicate {

From source file org.xlcloud.console.virtualClusterDefinitions.utils.ResourceByNamePredicate.java

/**
 * Predicate that matches resources with the same name as nameQuery given in the constructor.
 * @author Piotr Kulasek-Szwed AMG.net
 */
public class ResourceByNamePredicate implements Predicate {

From source file org.xlcloud.console.controllers.utils.predicates.VirtualClusterDefinitionTagFilterPredicate.java

/**
 * Predicate class used to check whether the VirtualClusterDefinition tag matches to the given filtering criteria.
 * @author "Konrad Krl", AMG.net
 */
public class VirtualClusterDefinitionTagFilterPredicate implements Predicate {

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

/**
 *  A <code>Predicate</code> which returns the logical short-circuit
 *  <em>or</em> of its operands.
 *
 *  <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 com.phoenixst.collections.AndPredicate.java

/**
 *  A <code>Predicate</code> which returns the logical short-circuit
 *  <em>and</em> of its operands.
 *
 *  <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 com.ibm.amc.data.filter.predicates.Contains.java

/**
 * A predicate to determine if a supplied object contains 
 * a named field with a provided value.
 * 
 * This predicate performs a "contains" match.
 * 

From source file com.ibm.amc.data.filter.predicates.EndsWith.java

/**
 * A predicate to determine if a supplied object contains 
 * a named field with a provided value.
 * 
 * This predicate performs a "ends with" match.
 * 

From source file com.ibm.amc.data.filter.predicates.NotContains.java

/**
 * A predicate to determine if a supplied object contains 
 * a named field with a provided value.
 * 
 * This predicate performs a "not contains" match.
 *