stresstests.interfaces
Interface ISelect<T>


public interface ISelect<T>

An interface to represent a predicate method.


Method Summary
 boolean select(T obj)
          Determine whether the given object satisfies a predicate.
 

Method Detail

select

boolean select(T obj)
Determine whether the given object satisfies a predicate.

Parameters:
obj - the object to assess.
Returns:
true if the objects satisfies the predicate.