All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thoughtworks.webstub.utils.Predicate Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.thoughtworks.webstub.utils;

public abstract class Predicate implements org.apache.commons.collections.Predicate {
    public abstract boolean satisfies(T t);

    @Override
    public final boolean evaluate(Object o) {
        return satisfies((T) o);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy