org.zalando.fauxpas.ThrowingPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of faux-pas Show documentation
Show all versions of faux-pas Show documentation
Error handling in Functional Programming
The newest version!
package org.zalando.fauxpas;
import lombok.SneakyThrows;
import org.apiguardian.api.API;
import java.util.function.Predicate;
import static org.apiguardian.api.API.Status.STABLE;
@API(status = STABLE)
@FunctionalInterface
public interface ThrowingPredicate extends Predicate {
boolean tryTest(T t) throws X;
@Override
@SneakyThrows
default boolean test(final T t) {
return tryTest(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy