ca.infoway.messagebuilder.xml
Interface Predicate<T>

Package class diagram package Predicate
Type Parameters:
T - - the type of item to analyze

public interface Predicate<T>

A generic interface for determining whether or not a condition applies. This interface is typically used while iterating over a number of items in a collection, to choose one particular option.

Author:
Intelliware Development

Method Summary
 boolean apply(T t)
          Apply the predicate criteria.
 

Method Detail

apply

boolean apply(T t)

Apply the predicate criteria.

Parameters:
t - - the item to analyze
Returns:
true if the predicate matches; false otherwise


Copyright © 2013. All Rights Reserved.