T
- The type of the predicate input.@ConsumerType @FunctionalInterface public interface Predicate<T>
This is a functional interface and can be used as the assignment target for a lambda expression or method reference.
Modifier and Type | Method and Description |
---|---|
boolean |
test(T t)
Evaluates this predicate on the specified argument.
|
boolean test(T t) throws java.lang.Exception
t
- The input to this predicate.true
if the specified argument is accepted by this
predicate; false
otherwise.java.lang.Exception
- An exception thrown by the method.Copyright © 2010 - 2020 Adobe. All Rights Reserved