alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Commons Collections example source code file (release_3_2.xml)

This example Commons Collections source code file (release_3_2.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Commons Collections tags/keywords

better, better, commons, fix, fix, if, license, license, list, see, the, this, this, you

The Commons Collections release_3_2.xml source code

<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements.  See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License.  You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<document>
 <properties>
  <title>Release notes for v3.2
  <author email="dev@commons.apache.org">Commons Documentation Team
 </properties>
<body>

<section name="Release notes for v3.2">
<p>
These are the release notes for Commons Collections v3.2:
</p>
<hr />
<p>
Commons collections is a project to develop and maintain collection classes
based on and inspired by the JDK collection framework.
This project is JDK1.2 compatible, and does not use JDK1.5 generics.
</p>
<p>
This release adds various new classes and fixes a number of bugs.
All feedback should be directed to commons-user at jakarta.apache.org.
</p>
<hr />

<center>

COMPATIBILITY

<p> This release is fully source and binary compatible with v3.1. (Checks performed using JDiff and Clirr, thanks). Please check the bug fixes to ensure you weren't relying on the behaviour of a bug. </p> <p> There are two new <i>deprecations:
BeanMap is now deprecated and will be removed in v4.0. The class is now available in commons-beanutils (full jar version). This change was made to ensure that all bean related collections were in one place (ie. beanutils). If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org. </p> <p> MultiHashMap is now deprecated and will be removed in v4.0. The class is now available as MultiValueMap in the map subpackage. This new version of the class is a decorator and can wrap maps other than HashMap making it much more flexible. If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org. </p> <center>

NEW CLASSES

<ul> <li>MultiValueMap - Decorator implementation of MultiMap providing control over the map and collection implementations, updated MapUtils to match [29440] <li>DefaultedMap - Returns a default value when the key is not found, without adding the default value to the map itself [30911] <li>GrowthList - Decorator that causes set and indexed add to expand the list rather than throw IndexOutOfBoundsException [34171] <li>LoopingListIterator - When the end of the list is reached the iteration continues from the start, updated IteratorUtils to match [30166] <li>ReverseListIterator - A list iterator that returns the elements from the list in reverse order [39224] <li>BoundedBuffer - A new wrapper class which can make any buffer bounded, updated BufferUtils to match [37473] </ul> <center>

ENHANCEMENTS

<ul> <li>CollectionUtils.addIgnoreNull - Adds to the collection if the value being added is not null [30020] <li>MapUtils.putAll - Puts an array of key/value pairs into a map [30882] <li>CollectionUtils/MapUtils.isEmpty/isNotEmpty - Null-safe checks of collection emptyness [35890] <li>CollectionUtils.sizeIsEmpty - Checks if a collection, array, map, iterator or enumeration is empty <li>CollectionUtils/ListUtils - retainAll/removeAll that don't change original colllection <li>ExtendedProperties - Accepts List elements (does not enforce Vector) as values [36812] <li>ExtendedProperties - new Methods getList(String key) and getList(String key, List defaults) [36812] <li>ExtendedProperties - No longer uses an exception in normal processing [30497] <li>BlockingBuffer - now includes stack trace if InterupttedException occurs [33700] <li>BlockingBuffer - new methods that allow get and remove with a timeout, updated BufferUtils to match [27691] <li>BlockingBuffer - now allows you to specify a default timeout value for get/remove operations [37607] <li>TransformedMap/TransformedSortedMap - new factory decorateTransform() that transforms any existing entries in the map [30959] <li>ListOrderedMap - values can now be accessed as a List using valueList() [37015] <li>ListOrderedMap - additional list-like method, setValue(int,Object) <li>ListOrderedMap - additional method, put(int,Object,Object) <li>PriorityBuffer - now Serializable [36163] <li>ListIteratorWrapper - now implements ResettableListIterator [39449] <li>IfClosure - add single argument constructor, updated CllosureUtils to match [38495] <li>All/Any/One/None Predicate - allow construction with zero or one predicates [37979] </ul> <center>

BUG FIXES

<ul> <li>FastArrayList - Fix iterators and views to work better in multithreaded environments <li>FastArrayList - Fix iterator remove where ConcurrentModificationException not as expected [34690] <li>CursorableLinkedList (list subpackage) - Fix iterator remove/set not throwing IllegalStateException after next-previous-removeByIndex [35766] <li>TreeList/CursorableLinkedList/NodeCachingLinkedList/AbstractLinkedList - Fix iterator remove not working properly when called after previous [35258] <li>TreeList - remove(int) could break class invariants, breaking iterator previous [35258] <li>SetUniqueList.set(int,Object) - Destroyed set status in certain circumstances [33294] <li>AbstractLinkedMap.init() - Now calls createEntry() to create the map entry object [33706] <li>AbstractHashedMap deserialization - Fix to prevent doubling of internal data array [34265] <li>AbstractHashedMap initialization - Fix to setup threshold correctly, improving performance [35012] <li>BeanMap.initialize() - Internal variable now correctly initialised with only write methods that actually exist [15895] <li>MultiHashMap.remove(key, item) - Was returning the item even when nothing was removed [32366] <li>MultiHashMap.putAll(multimap) - Was adding the collection as a single item rather than individually [35631] <li>MultiHashMap - Enable compilation using J# <li>Flat3Map.equals() - Fix to make flat mode comparison actually work [34917] <li>TransformedMap.putAll - Now allows putAll of an empty map [34686] <li>StaticBucketMap.containsKey - Fix incorrect null checking [37567] <li>AbstractMapBag.BagIterator.remove - Removing the last entry used to break the class invariants [35747] <li>BoundedFifoBuffer/CircularFifoBuffer - Fix serialization to work in case where buffer serialized when full [31433] <li>BoundedFifoBuffer - Fix iterator remove bug causing ArrayIndexOutOfBounds error [33071] <li>UnboundedFifoBuffer - Fix iterator remove bug causing ArrayIndexOutOfBounds error [35733] <li>UnboundedFifoBuffer - Fix deserialization to work with subsequant object manipulation [35763] <li>BlockingBuffer - Fix internal locking code (internal fix, no effect on users of BlockingBuffer) [37028] <li>IteratorChain.remove() - Fix to avoid IllegalStateException when one of the underlying iterators is a FilterIterator [34267] <li>FilterIterator - Correctly handle setting of iterator and predicate after object creation [38074] <li>ExtendedProperties.convertProperties() - Fix to handle default properties maps correctly [32204] <li>Add casts to avoid some JDK1.5 compilation warnings [35474] <li>Make serialization version ids private [37106] </ul> <center>

JAVADOC

<ul> <li>MapUtils.safeAddToMap - Better comment <li>MapUtils.transformed*Map - Better comment <li>ListOrderedSet.decorate(List) - Better comment [32073] <li>BlockingBuffer - Add comments <li>Maps - synchronization comments [32573] <li>SwitchTransformer - defaultTransformer comment fix [39207] </ul> </section> </body> </document>

Other Commons Collections examples (source code examples)

Here is a short list of links related to this Commons Collections release_3_2.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.