Add missing closure type.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1549020 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-12-08 11:39:48 +00:00
parent ba8758326c
commit 6ab22a7df1
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ import org.apache.commons.collections4.functors.WhileClosure;
* <li>While - repeatedly calls a closure while a predicate is true
* <li>DoWhile - repeatedly calls a closure while a predicate is true
* <li>Chained - chains two or more closures together
* <li>If - calls one closure or another based on a predicate
* <li>Switch - calls one closure based on one or more predicates
* <li>SwitchMap - calls one closure looked up from a Map
* <li>Transformer - wraps a Transformer as a Closure