Added change entry for trie package.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1492871 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-06-13 21:17:31 +00:00
parent d5f763bd9e
commit 0eaf4db681
2 changed files with 8 additions and 1 deletions

View File

@ -32,6 +32,7 @@ Major changes since 3.2.1
- Removed deprecated classes / methods and features which are now supported by the JDK
- Replaced Buffer interface with java.util.Queue
- Added concept of split maps with respective interfaces Put / Get (see also package splitmap)
- Added new Trie interface together with an implementation of a Patricia Trie
Removed classes
@ -78,7 +79,9 @@ New classes
o [COLLECTIONS-275] IndexedCollection - collection decorator which provides a map-like view on an existing collection. Thanks to Stephen Kestle.
o [COLLECTIONS-258] DualLinkedHashBidiMap - bidi map implementation using LinkedHashMap instances. Thanks to Nathan Blomquist.
o [COLLECTIONS-242] Equator - interface for testing object equality.
o [COLLECTIONS-241] PassiveExpiringMap - map decorator which passively expires entries. Thanks to Elifarley Callado Coelho.
o [COLLECTIONS-241] PassiveExpiringMap - map decorator which passively expires entries. Thanks to Elifarley Callado Coelho.
o [COLLECTIONS-225] PatriciaTrie - PATRICIA trie implementation for the new Trie interface, together with Unmodifiable and
Synchronized decorators. Thanks to Sam Berlin and Roger Kapsi.
o [COLLECTIONS-8 ] ComparatorPredicate - predicate to compare objects against a fixed instance. Thanks to Rune Peter Bjørnstad.
o [None ] Put / Get - interfaces for split maps
o [None ] SplitMapUtils / splitmap.TransformedSplitMap - utilities and implementation for split maps

View File

@ -449,6 +449,10 @@
<action issue="COLLECTIONS-226" dev="bayard" type="add" due-to="Vasily Ivanov">
Added method "ListOrderedMap#putAll(int, Map)".
</action>
<action issue="COLLECTIONS-225" dev="tn" type="add" due-to="Sam Berlin, Roger Kapsi">
Added new "Trie" interface with a first concrete implementation "PatriciaTrie"
together with decorators "Unmodifiable" and "Synchronized".
</action>
<action issue="COLLECTIONS-223" dev="bayard" type="update" due-to="Vasily Ivanov">
"CollectionUtils#addAll(...)" methods now return if the collection has been changed
by this operation.