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

Commons Collections example source code file (index.xml)

This example Commons Collections source code file (index.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

apache, apache, asf, asf, collections, java, jdk, license, license, please, see, the, the, you

The Commons Collections index.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>Home
  <author email="dev@commons.apache.org">Commons Documentation Team
 </properties>
<body>
<!-- ================================================== -->
<section name="Commons Collections">
<p>
The <a href="http://java.sun.com/products/j2se/1.4/docs/guide/collections/">Java Collections Framework
was a major addition in JDK 1.2.
It added many powerful data structures that accelerate development of most significant Java applications.
Since that time it has become the recognised standard for collection handling in Java.
</p>
<p>
Commons-Collections seek to build upon the JDK classes by providing new interfaces, implementations and utilities.
There are many features, including:
<ul>
<li>Bag interface for collections that have a number of copies of each object
<li>Buffer interface for collections that have a well defined removal order, like FIFOs
<li>BidiMap interface for maps that can be looked up from value to key as well and key to value
<li>MapIterator interface to provide simple and quick iteration over maps
<li>Type checking decorators to ensure that only instances of a certain type can be added
<li>Transforming decorators that alter each object as it is added to the collection
<li>Composite collections that make multiple collections look like one
<li>Ordered maps and sets that retain the order elements are added in, including an LRU based map
<li>Identity map that compares objects based on their identity (==) instead of the equals method
<li>Reference map that allows keys and/or values to be garbage collected under close control
<li>Many comparator implementations
<li>Many iterator implementations
<li>Adapter classes from array and enumerations to collections
<li>Utilities to test or create typical set-theory properties of collections such as union, intersection, and closure
</ul>
</p>
</section>
<!-- ================================================== -->
<section name="Documentation">
<p>
A getting started<span> User's Guide is available
as are various <a href="maven-reports.html">project reports.
</p>
<p>
The JavaDoc API documents are available online:
</p>
<ul>
<li>The current release 3.2.1
<li>The latest 2.x release - version 2.1.1
<li>The latest SVN
</ul>
<p>
The <a href="cvs-usage.html">subversion repository can be
<a href="http://svn.apache.org/viewvc/commons/proper/collections/trunk/">browsed.
</p>
</section>
<!-- ================================================== -->
<section name="Releases">
<p>
The latest version is v3.2.1 - 
<a href="http://commons.apache.org/downloads/download_collections.cgi">Download now!
The <a href="release_3_2_1.html">release notes are also available. </p> <p> For previous releases, see the <a href="http://archive.apache.org/dist/commons/collections/">Apache Archive </p> </section> <!-- ================================================== --> <section name="Support"> <p> The <a href="mail-lists.html">commons mailing lists act as the main support forum. The user list is suitable for most library usage queries. The dev list is intended for the development discussion. Please remember that the lists are shared between all commons components, so prefix your email by [collections]. </p> <p> Issues may be reported via <a href="issue-tracking.html">ASF JIRA. Please read the instructions carefully to submit a useful bug report or enhancement request. </p> </section> <!-- ================================================== --> </body> </document>

Other Commons Collections examples (source code examples)

Here is a short list of links related to this Commons Collections index.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.