Example usage for org.apache.commons.collections15 Predicate interface-usage

List of usage examples for org.apache.commons.collections15 Predicate interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections15 Predicate interface-usage.

Usage

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.FALoadPredicate.java

/**
 * The Class FALoadPredicate.
 * 
 * @author Christopher Ewest
 */
public final class FALoadPredicate implements Predicate<AbstractInsnNode> {

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.IALoadPredicate.java

/**
 * The Class IALoadPredicate.
 * 
 * @author Christopher Ewest
 */
public final class IALoadPredicate implements Predicate<AbstractInsnNode> {

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.LALoadPredicate.java

/**
 * The Class LALoadPredicate.
 * 
 * @author Christopher Ewest
 */
public final class LALoadPredicate implements Predicate<AbstractInsnNode> {

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.ALoadPredicate.java

/**
 * The Class ALoadPredicate.
 * 
 * @author Christopher Ewest
 */
public final class ALoadPredicate implements Predicate<AbstractInsnNode> {

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.DALoadPredicate.java

/**
 * The Class DALoadPredicate.
 * 
 * @author Christopher Ewest
 */
public final class DALoadPredicate implements Predicate<AbstractInsnNode> {

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.AALoadPredicate.java

/**
 * The Class AALoadPreciate.
 * 
 * @author Christopher Ewest
 */
public class AALoadPredicate implements Predicate<AbstractInsnNode> {

From source file fungus.TypePredicate.java

public class TypePredicate implements Predicate<MycoNode> {
    public int type;

    public TypePredicate(int type) {
        this.type = type;
    }

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.NumberValuePredicate.java

/**
 * The Class NumberValuePredicate.
 * 
 * @author Christopher Ewest
 */
public final class NumberValuePredicate implements Predicate<AbstractInsnNode> {

From source file org.funcito.collectionsgeneric.CollectGenPredicate.java

public class CollectGenPredicate<T> implements Predicate<T> {

    private static Method altMethod;
    static {
        try {
            altMethod = FuncitoCollectGen.class.getMethod("predicateFor", Boolean.class, boolean.class);

From source file de.tuberlin.uebb.jbop.optimizer.utils.predicates.OptimizablePredicate.java

/**
 * The Class OptimizablePredicate.
 * 
 * @author Christopher Ewest
 */
public class OptimizablePredicate implements Predicate<MethodNode> {