Delete removed features from site.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1469072 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-04-17 21:02:37 +00:00
parent 8be0b4cfb8
commit 73bf0ef0f8
1 changed files with 0 additions and 3 deletions

View File

@ -34,14 +34,11 @@ Commons-Collections seek to build upon the JDK classes by providing new interfac
There are many features, including: There are many features, including:
<ul> <ul>
<li>Bag interface for collections that have a number of copies of each object</li> <li>Bag interface for collections that have a number of copies of each object</li>
<li>Buffer interface for collections that have a well defined removal order, like FIFOs</li>
<li>BidiMap interface for maps that can be looked up from value to key as well and key to value</li> <li>BidiMap interface for maps that can be looked up from value to key as well and key to value</li>
<li>MapIterator interface to provide simple and quick iteration over maps</li> <li>MapIterator interface to provide simple and quick iteration over maps</li>
<li>Type checking decorators to ensure that only instances of a certain type can be added</li>
<li>Transforming decorators that alter each object as it is added to the collection</li> <li>Transforming decorators that alter each object as it is added to the collection</li>
<li>Composite collections that make multiple collections look like one</li> <li>Composite collections that make multiple collections look like one</li>
<li>Ordered maps and sets that retain the order elements are added in, including an LRU based map</li> <li>Ordered maps and sets that retain the order elements are added in, including an LRU based map</li>
<li>Identity map that compares objects based on their identity (==) instead of the equals method</li>
<li>Reference map that allows keys and/or values to be garbage collected under close control</li> <li>Reference map that allows keys and/or values to be garbage collected under close control</li>
<li>Many comparator implementations</li> <li>Many comparator implementations</li>
<li>Many iterator implementations</li> <li>Many iterator implementations</li>