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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
evaluate(T t)
Return true iff the specified object satisfies the predicate.
-
-
-
Method Detail
-
evaluate
boolean evaluate(T t)
Return true iff the specified object satisfies the predicate.- Parameters:
t
- the object to evaluate- Returns:
- true iff the specified object satisfies the predicate
-
-