Package com.atlassian.bamboo.util
Interface ThrowingPredicate<T,E extends Throwable>
-
public interface ThrowingPredicate<T,E extends Throwable>Determines a true or false value for a given input.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanapply(T input)Returns the result of applying this predicate toinput.
-
-
-
Method Detail
-
apply
boolean apply(@Nullable T input) throws E extends ThrowableReturns the result of applying this predicate toinput. This method is generally expected, but not absolutely required, to have the following properties:- Its execution does not cause any observable side effects.
- The computation is consistent with equals; that is,
Objects.equal(java.lang.Object, java.lang.Object)(a, b)implies thatpredicate.apply(a) == predicate.apply(b)).
- Throws:
NullPointerException- ifinputis null and this predicate does not accept null argumentsE extends Throwable
-
-