Interface IPredicate<T>
-
- Type Parameters:
T- The type of the object to compare.
public interface IPredicate<T>
The Interface IPredicate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanpredicate(T obj)Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
-
-
-
Method Detail
-
predicate
boolean predicate(T obj) throws ServiceLocalException
Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.- Parameters:
obj- The object to compare against the criteria defined within the method represented by this delegate.- Returns:
- true if obj meets the criteria defined within the method represented by this delegate; otherwise, false.
- Throws:
ServiceLocalException
-
-