cfa.vo.iris.utils
Interface IPredicate<T>


public interface IPredicate<T>

Generic interfaces for filter predicates. The type parameter represents the class of objects this predicate can be applied to.

Author:
olaurino

Method Summary
 boolean apply(T object)
          Callback that applies this predicate to an object.
 

Method Detail

apply

boolean apply(T object)
Callback that applies this predicate to an object.

Parameters:
object - The object to which the predicate has to be applied.
Returns:
True if the object satisfies the predicate.


Copyright © 2013. All rights reserved.