public interface Predicate<T>
Implementation must override apply method and will return true if object
match predicate, false otherwise.
Internal API: these methods are part of the internal API and may be removed, have their signature change, or have their access level decreased from public to protected, package, or private in future versions without notice.
| Modifier and Type | Method and Description |
|---|---|
boolean |
apply(T object)
Predicate method.
|
boolean apply(T object)
object - Object to check.true if parameter match predicate, false otherwise.Copyright © 2018. All rights reserved.