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

org.zalando.fauxpas.ThrowingPredicate Maven / Gradle / Ivy

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