Package com.oracle.coherence.common.base
Interface Predicate<T>
- Type Parameters:
T
- the type of the value to evaluate
- All Known Implementing Classes:
com.oracle.coherence.common.net.InetAddresses.IsRoutable
,com.oracle.coherence.common.net.InetAddresses.IsSubnetMask
,InetAddressHelper.RoutableFilter
,InetAddressHelper.SubnetMaskFilter
public interface Predicate<T>
Predicate represents a boolean test of an object.
- Author:
- rhl 2011.11.14
-
Method Summary
-
Method Details
-
evaluate
Return true iff the specified object satisfies the predicate.- Parameters:
t
- the object to evaluate- Returns:
- true iff the specified object satisfies the predicate
-