T - The type of the subject parameter of the PredicateWhichThrows.evaluate(Object) methodpublic interface Predicate<T> extends PredicateWhichThrows<T,NoException>
T fulfils a particular condition.
Notice: The phrase "the Predicate evaluates to x [ for y ]" is commonly used
instead of "PredicateWhichThrows.evaluate(Object) returns x [ when invoked with argument y ]".
When using this type in a variable, parameter or field declaration, never write:
Predicate<subject-type>
, but always:
Predicate<? super subject-type>
evaluateCopyright © 2018 Arno Unkrig. All rights reserved.