com.thoughtworks.webstub.utils.Predicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-stub Show documentation
Show all versions of web-stub Show documentation
Library for stubbing external HTTP dependencies
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