com.atlassian.bamboo.util
Interface ThrowingPredicate<T,E extends java.lang.Throwable>


public interface ThrowingPredicate<T,E extends java.lang.Throwable>

Determines a true or false value for a given input.


Method Summary
 boolean apply(T input)
          Returns the result of applying this predicate to input.
 

Method Detail

apply

boolean apply(@Nullable
              T input)
              throws E extends java.lang.Throwable
Returns the result of applying this predicate to input. This method is generally expected, but not absolutely required, to have the following properties:

Throws:
java.lang.NullPointerException - if input is null and this predicate does not accept null arguments
E extends java.lang.Throwable


Copyright © 2012 Atlassian. All Rights Reserved.