mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-06 10:08:32 +00:00
Add since tags
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137209 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8977d08016
commit
8e3f80d77e
@ -64,10 +64,11 @@
|
||||
* <p><code>ArrayUtils</code> contains utility methods for working for
|
||||
* arrays.</p>
|
||||
*
|
||||
* @author <a href="mailto:scolebourne@apache.org">Stephen Colebourne</a>
|
||||
* @author Stephen Colebourne
|
||||
* @author Moritz Petersen
|
||||
* @author <a href="mailto:fredrik@westermarck.com">Fredrik Westermarck</a>
|
||||
* @version $Id: ArrayUtils.java,v 1.6 2002/11/24 16:50:38 scolebourne Exp $
|
||||
* @since 2.0
|
||||
* @version $Id: ArrayUtils.java,v 1.7 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class ArrayUtils {
|
||||
|
||||
|
@ -58,7 +58,8 @@
|
||||
* boolean and Boolean objects.</p>
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
* @version $Id: BooleanUtils.java,v 1.2 2002/12/22 21:33:12 scolebourne Exp $
|
||||
* @since 2.0
|
||||
* @version $Id: BooleanUtils.java,v 1.3 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class BooleanUtils {
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
@ -53,6 +51,7 @@
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/**
|
||||
* <p>A range of characters. Able to understand the idea of a contiguous
|
||||
@ -61,8 +60,9 @@
|
||||
* <p>Used by <code>CharSet</code> to handle sets of characters.</p>
|
||||
*
|
||||
* @author <a href="bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: CharRange.java,v 1.2 2002/11/16 10:41:03 scolebourne Exp $
|
||||
* @author Stephen Colebourne
|
||||
* @since 1.0
|
||||
* @version $Id: CharRange.java,v 1.3 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
class CharRange {
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
@ -53,6 +51,7 @@
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.LinkedList;
|
||||
@ -63,8 +62,9 @@
|
||||
* set.</p>
|
||||
*
|
||||
* @author <a href="bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: CharSet.java,v 1.6 2002/11/16 10:41:03 scolebourne Exp $
|
||||
* @author Stephen Colebourne
|
||||
* @since 1.0
|
||||
* @version $Id: CharSet.java,v 1.7 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class CharSet {
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
@ -53,13 +51,15 @@
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/**
|
||||
* <p>Numerous routines to manipulate a <code>CharSet</code>.</p>
|
||||
*
|
||||
* @author <a href="bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: CharSetUtils.java,v 1.7 2002/11/16 10:41:03 scolebourne Exp $
|
||||
* @author Stephen Colebourne
|
||||
* @since 1.0
|
||||
* @version $Id: CharSetUtils.java,v 1.8 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class CharSetUtils {
|
||||
|
||||
|
@ -60,8 +60,9 @@
|
||||
* <p><code>ClassUtils</code> contains utility methods for working for
|
||||
* classes without using reflection.</p>
|
||||
*
|
||||
* @author <a href="mailto:scolebourne@apache.org">Stephen Colebourne</a>
|
||||
* @version $Id: ClassUtils.java,v 1.6 2002/12/15 19:36:08 scolebourne Exp $
|
||||
* @author Stephen Colebourne
|
||||
* @since 2.0
|
||||
* @version $Id: ClassUtils.java,v 1.7 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class ClassUtils {
|
||||
|
||||
|
@ -70,6 +70,10 @@
|
||||
* <p>Alternate strategies are usable. For example this class currently
|
||||
* does not enforce a particular interface, which means it cannot
|
||||
* cache that method. Doing this probably makes a lot of sense.</p>
|
||||
*
|
||||
* @author Henri Yandell
|
||||
* @since 2.0
|
||||
* @version $Id: Notifier.java,v 1.5 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class Notifier {
|
||||
|
||||
|
@ -59,7 +59,8 @@
|
||||
* <p>Exception thrown when something goes wrong in notifying.</p>
|
||||
*
|
||||
* @author <a href="mailto:bayard@apache.org">Henri Yandell</a>
|
||||
* @version $Id: NotifierException.java,v 1.2 2002/11/16 10:41:03 scolebourne Exp $
|
||||
* @since 2.0
|
||||
* @version $Id: NotifierException.java,v 1.3 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class NotifierException extends NestableException {
|
||||
|
||||
|
@ -62,7 +62,10 @@
|
||||
*
|
||||
* @author <a href="mailto:chrise@esha.com">Christopher Elkins</a>
|
||||
* @author Stephen Colebourne
|
||||
* @version $Revision: 1.4 $ $Date: 2002/12/21 14:22:11 $
|
||||
* @since 1.0
|
||||
* @version $Revision: 1.5 $ $Date: 2002/12/23 00:32:24 $
|
||||
*
|
||||
* @deprecated Use one of the Range classes in org.apache.commons.lang.math
|
||||
*/
|
||||
public final class NumberRange {
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
@ -53,6 +51,7 @@
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.math.BigDecimal;
|
||||
@ -61,9 +60,10 @@
|
||||
*
|
||||
* @author <a href="mailto:bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:rand_mcneely@yahoo.com">Rand McNeely</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @author Stephen Colebourne
|
||||
* @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a>
|
||||
* @version $Id: NumberUtils.java,v 1.5 2002/12/15 16:53:28 scolebourne Exp $
|
||||
* @since 1.0
|
||||
* @version $Id: NumberUtils.java,v 1.6 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public final class NumberUtils {
|
||||
|
||||
|
@ -60,8 +60,9 @@
|
||||
* @author <a href="mailto:nissim@nksystems.com">Nissim Karpenstein</a>
|
||||
* @author <a href="mailto:janekdb@yahoo.co.uk">Janek Bogucki</a>
|
||||
* @author <a href="mailto:dlr@finemaltcoding.com">Daniel Rall</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: ObjectUtils.java,v 1.5 2002/11/16 10:41:03 scolebourne Exp $
|
||||
* @author Stephen Colebourne
|
||||
* @since 1.0
|
||||
* @version $Id: ObjectUtils.java,v 1.6 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class ObjectUtils {
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
@ -53,6 +51,7 @@
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang;
|
||||
|
||||
import java.util.Random;
|
||||
/**
|
||||
@ -62,8 +61,9 @@
|
||||
*
|
||||
* @author <a href="mailto:bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: RandomStringUtils.java,v 1.6 2002/11/16 10:41:03 scolebourne Exp $
|
||||
* @author Stephen Colebourne
|
||||
* @since 1.0
|
||||
* @version $Id: RandomStringUtils.java,v 1.7 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class RandomStringUtils {
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
package org.apache.commons.lang;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
@ -53,6 +51,7 @@
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang;
|
||||
|
||||
import java.util.StringTokenizer;
|
||||
import java.util.Iterator;
|
||||
@ -72,9 +71,10 @@
|
||||
* @author <a href="mailto:bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:ed@apache.org">Ed Korthof</a>
|
||||
* @author <a href="mailto:rand_mcneely@yahoo.com">Rand McNeely</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @author Stephen Colebourne
|
||||
* @author <a href="mailto:fredrik@westermarck.com">Fredrik Westermarck</a>
|
||||
* @version $Id: StringUtils.java,v 1.29 2002/12/15 16:54:23 scolebourne Exp $
|
||||
* @since 1.0
|
||||
* @version $Id: StringUtils.java,v 1.30 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class StringUtils {
|
||||
|
||||
|
@ -58,9 +58,10 @@
|
||||
*
|
||||
* @author Based on code from Avalon Excalibur
|
||||
* @author Based on code from Lucene
|
||||
* @author <a href="mailto:scolebourne@apache.org">Stephen Colebourne</a>
|
||||
* @author Stephen Colebourne
|
||||
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
||||
* @version $Id: SystemUtils.java,v 1.6 2002/12/08 16:18:39 scolebourne Exp $
|
||||
* @since 1.0
|
||||
* @version $Id: SystemUtils.java,v 1.7 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class SystemUtils {
|
||||
|
||||
|
@ -69,7 +69,8 @@
|
||||
*
|
||||
* @author <a href="mailto:ola.berg@arkitema.se">Ola Berg</a>
|
||||
* @author Stephen Colebourne
|
||||
* @version $Id: Validate.java,v 1.1 2002/12/13 17:21:56 scolebourne Exp $
|
||||
* @since 2.0
|
||||
* @version $Id: Validate.java,v 1.2 2002/12/23 00:32:24 scolebourne Exp $
|
||||
*/
|
||||
public class Validate {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user