pl.touk.throwing.ThrowingPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of throwing-function Show documentation
Show all versions of throwing-function Show documentation
Java 8+ functional interfaces with checked exceptions support
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package pl.touk.throwing;
import pl.touk.throwing.exception.WrappedException;
import java.util.Objects;
import java.util.function.Predicate;
/**
* Represents a function that accepts one argument and returns a boolean value
* Function might throw a checked exception instance.
*
* @param the type of the input to the function
* @param the type of the thrown checked exception
*
*/
@FunctionalInterface
public interface ThrowingPredicate {
boolean test(T t) throws E;
static Predicate unchecked(ThrowingPredicate predicate) {
Objects.requireNonNull(predicate);
return predicate.uncheck();
}
default ThrowingPredicate and(final ThrowingPredicate super T, E> other) {
Objects.requireNonNull(other);
return t -> test(t) && other.test(t);
}
default ThrowingPredicate or(final ThrowingPredicate super T, E> other) {
Objects.requireNonNull(other);
return t -> test(t) || other.test(t);
}
default ThrowingPredicate xor(final ThrowingPredicate super T, E> other) {
Objects.requireNonNull(other);
return t -> test(t) ^ other.test(t);
}
default ThrowingPredicate negate() {
return t -> !test(t);
}
/**
* @return this Predicate instance as a Function instance
*/
default ThrowingFunction asFunction() {
return this::test;
}
/**
* @return a new Predicate instance which wraps thrown checked exception instance into a RuntimeException
*/
default Predicate uncheck() {
return t -> {
try {
return test(t);
} catch (final Throwable e) {
throw new WrappedException(e);
}
};
}
}