blob: dab2d73c150900c0018b681b2005b6e57e9bad0c [file] [log] [blame]
<html>
<head>
<title>Status File for Jakarta Commons "Lang" Component</title>
</head>
<body bgcolor="white">
<div align="center">
<h1>The Jakarta Commons <em>Lang</em> Component</h1>
$Id: STATUS.html,v 1.42 2003/07/14 23:02:53 scolebourne Exp $<br />
<a href="#Introduction">[Introduction]</a>
<a href="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a>
<a href="#Known Issues">[Known Issues]</a>
<a href="#Action Items">[Action Items]</a>
<a href="#Committers">[Committers]</a>
<br /><br />
</div>
<a name="Introduction"></a>
<h3>1. INTRODUCTION</h3>
<p>The <em>Lang</em> Component contains a set of Java classes that provide
a basic set of common utility code on top of the standard Java classes.
The following principal classes are included:</p>
<ul>
<li><strong>Main package</strong> - A package for the manipulation of basic Java classes
<ul>
<li><strong>ArrayUtils</strong> - Helper for manipulating arrays.</li>
<li><strong>BooleanUtils</strong> - Helper for boolean and java.lang.Boolean.</li>
<li><strong>CharSetUtils</strong> - Methods for dealing with CharSets, which are sets of characters such as [a-z] and [abcdez].</li>
<li><strong>ClassUtils</strong> - Helper for manipulating java.lang.Class objects.</li>
<li><strong>ObjectUtils</strong> - Helper for java.lang.Object.</li>
<li><strong>RandomStringUtils</strong> - Helper for creating randomised Strings.</li>
<li><strong>SerializationUtils</strong> - Helper for serializing Objects.</li>
<li><strong>StringEscapeUtils</strong> - Utility for escaping and unescaping Strings.</li>
<li><strong>StringUtils</strong> - Helper for java.lang.String.</li>
<li><strong>SystemUtils</strong> - Utility class defining the Java system properties.</li>
<li><strong>WordWrapUtils</strong> - Utility for working with words.</li>
</ul></li>
<li><strong>Builder package</strong> - A package for the creation of equals, hashCode, compareTo and toString methods.
<ul>
<li><strong>ToStringBuilder</strong> - Helper for building toString methods.</li>
<li><strong>EqualsBuilder</strong> - Helper for building equals methods.</li>
<li><strong>HashCodeBuilder</strong> - Helper for building hashCode methods.</li>
<li><strong>CompareToBuilder</strong> - Helper for building compareTo methods.</li>
</ul></li>
<li><strong>Enum package</strong> - A package for the creation of enumerated types.
<ul>
<li><strong>EnumUtils</strong> - Helper for manipulating enumerated types.</li>
<li><strong>Enum</strong> - Abstract superclass for enumerated types to extend.</li>
<li><strong>ValuedEnum</strong> - Superclass for enumerated types with an integer constant.</li>
</ul></li>
<li><strong>Exception package</strong> - A package for the creation and manipulation of nested exceptions.</li>
<ul>
<li><strong>ExceptionUtils</strong> - Helper for manipulating exceptions.</li>
<li><strong>NestableException</strong> - An exception that supports a nested exception.</li>
<li><strong>NestedRuntimeException</strong> - An exception that supports a nested exception.</li>
<li><strong>NestedError</strong> - An exception that supports a nested exception.</li>
</ul></li>
<li><strong>Math package</strong> - A package for simple business (not scientific) maths classes.
<ul>
<li><strong>Fraction</strong> - A fraction.</li>
<li><strong>JVMRandom</strong> - An implementation of Random that does its best to appear to sit on top of java.lang.Math's private Random class.</li>
<li><strong>NumberUtils</strong> - Helper for java.lang.Number and its subclasses.</li>
<li><strong>Range</strong> - A range of numbers<, of which there are classes representing Numbers, ints, doubles, longs and floats./li>
<li><strong>RandomUtils</strong> - A utility class for working with random numbers.</li>
</ul></li>
<li><strong>Time package</strong> - A package for date/time related utilities.
<ul>
<li><strong>DateFormatUtils</strong> - Aids in formatting Dates.</li>
<li><strong>DateUtils</strong> - Aids in manipulating Dates.</li>
<!--li><strong>DurationFormatUtils</strong> - Formats durations, represented by milliseconds.</li-->
<li><strong>FastDateFormat</strong> - Optimised version of SimpleDateFormat.</li>
<li><strong>StopWatch</strong> - Records durations, represented by milliseconds.</li>
</ul></li>
<li><strong>Util package</strong> - A package for common useful utilities.
<ul>
<li><strong>BitField</strong> - A class to assist with manipulating bits.</li>
<li><strong>IdentifierUtils</strong> - Implementation of various identifier factories.</li>
<li><strong>Validate</strong> - A class to simplify method argument validation.</li>
</ul></li>
</ul>
<a name="Dependencies"></a>
<h3>2. DEPENDENCIES</h3>
<p>The <em>Lang</em> component is dependent upon the following external
components for development and use:</p>
<ul>
<li><a href="http://java.sun.com/j2se">Java Development Kit</a>
(Version 1.2 or later)</li>
<li><a href="http://www.junit.org">JUnit Testing Framework</a>
(Version 3.7 or later) - for unit tests only, not required
for deployment</li>
</ul>
<a name="Release Info"></a>
<h3>3. RELEASE INFO</h3>
<p>Current Release:
<a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-lang/v2.0">Version 2.0</a>
</p>
<p>Planned Next Release:
Unknown.
</p>
<a name="Known Issues"></a>
<h3>4. KNOWN ISSUES</h3>
<p>
<ul>
<li>CharRange.UNSET - will have problems if we introduce reverse ranges that go down to \u0000.</lI>
<li>Null effects - the classes are not standardised in how they handle null.</li>
</ul>
</p>
<a name="Action Items"></a>
<h3>5. ACTION ITEMS</h3>
<p>Want to help? Here's some "to do" items the team has identified as possibly being in scope for Lang. Note that all are still under discussion, so please mail the list before actioning.</p>
<ul>
<li>Reflection utilities - work underway in reflect package.</li>
<li>DateRange/Duration class</li>
<li>DurationFormatUtils to be completed and made public</li>
<li>CloneUtils - utility class to enable cloning via various different mechanisms. This code exists in [pattern] at present.</li>
<li>StringUtils.reverseSplit(String, String delim, int count). Should basically be a 'reverseArray(reverseDelimitedString(split(txt, delim, count)))</li>
<li>CharUtils - Utilities to work on a char[] in the same way as a String
<li>AStringBuffer - A StringBuffer implementation with additional methods from StringUtils
<li>O(n) - Document all algorithm-implementing methods with the order. Possibly with an O(n) on the end of each parameterm or with an @order tag.</li>
<li>Money and Currency</li>
<li>Code examples - Document as many static methods as possible with example usage.</li>
<li>Faster StringTokeniser - Is Java's slow?</li>
</ul>
<a name="Committers"></a>
<h3>6. COMMITTERS</h3>
<p>The following individuals are the primary developers and maintainers of this
component. Developers who plan to use <em>Lang</em> in their own
projects are encouraged to collaborate on the future development of this
component to ensure that it continues to meet a variety of needs.</p>
<ul>
<li><a href="mailto:bayard@apache.org">Henri Yandell</a></li>
<li><a href="mailto:dlr@finemaltcoding.com">Daniel Rall</a></li>
<li><a href="mailto:scolebourne@joda.org">Stephen Colebourne</a></li>
<li><a href="mailto:steven@caswell.name">Steven Caswell</a></li>
<li><a href="mailto:rdonkin@apache.org">Robert Burrell Donkin</a></li>
<li><a href="mailto:ggregory@seagullsw.com">Gary Gregory</a></li>
<!-- New committers, add your name here -->
</ul>
</body>
</html>