Javadoc: Replace some HTML anchor hrefs with Javadoc @link and other nits.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137949 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
440ac74e04
commit
ef8f9c9842
|
@ -17,6 +17,10 @@ limitations under the License.
|
|||
<body>
|
||||
Assists in creating consistent <code>equals(Object)</code>, <code>toString()</code>,
|
||||
<code>hashCode()</code>, and <code>compareTo(Object)</code> methods.
|
||||
@see java.lang.Object#equals(Object)
|
||||
@see java.lang.Object#toString()
|
||||
@see java.lang.Object#hashCode()
|
||||
@see java.lang.Comparable#compareTo(Object)
|
||||
@since 1.0
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -226,15 +226,14 @@ import org.apache.commons.lang.StringUtils;
|
|||
*
|
||||
* @deprecated Replaced by {@link org.apache.commons.lang.enums.Enum org.apache.commons.lang.enums.Enum}
|
||||
* and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
|
||||
* <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code>
|
||||
* is a Java 1.5 keyword.
|
||||
* {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword.
|
||||
* @see org.apache.commons.lang.enums.Enum
|
||||
* @author Apache Avalon project
|
||||
* @author Stephen Colebourne
|
||||
* @author Chris Webb
|
||||
* @author Mike Bowler
|
||||
* @since 1.0
|
||||
* @version $Id: Enum.java,v 1.28 2004/02/23 04:34:20 ggregory Exp $
|
||||
* @version $Id: Enum.java,v 1.29 2004/09/30 17:24:47 ggregory Exp $
|
||||
*/
|
||||
public abstract class Enum implements Comparable, Serializable {
|
||||
|
||||
|
|
|
@ -24,15 +24,14 @@ import java.util.Map;
|
|||
*
|
||||
* @deprecated Replaced by {@link org.apache.commons.lang.enums.EnumUtils org.apache.commons.lang.enums.EnumUtils}
|
||||
* and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
|
||||
* <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code>
|
||||
* is a Java 1.5 keyword.
|
||||
* {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword.
|
||||
* @see org.apache.commons.lang.enums.EnumUtils
|
||||
* @see Enum
|
||||
* @see ValuedEnum
|
||||
* @author Stephen Colebourne
|
||||
* @author Gary Gregory
|
||||
* @since 1.0
|
||||
* @version $Id: EnumUtils.java,v 1.12 2004/02/23 04:34:20 ggregory Exp $
|
||||
* @version $Id: EnumUtils.java,v 1.13 2004/09/30 17:24:47 ggregory Exp $
|
||||
*/
|
||||
public class EnumUtils {
|
||||
|
||||
|
|
|
@ -94,13 +94,12 @@ import org.apache.commons.lang.ClassUtils;
|
|||
*
|
||||
* @deprecated Replaced by {@link org.apache.commons.lang.enums.ValuedEnum org.apache.commons.lang.enums.ValuedEnum}
|
||||
* and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
|
||||
* <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code>
|
||||
* is a Java 1.5 keyword.
|
||||
* {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword.
|
||||
* @see org.apache.commons.lang.enums.ValuedEnum
|
||||
* @author Apache Avalon project
|
||||
* @author Stephen Colebourne
|
||||
* @since 1.0
|
||||
* @version $Id: ValuedEnum.java,v 1.16 2004/02/23 04:34:20 ggregory Exp $
|
||||
* @version $Id: ValuedEnum.java,v 1.17 2004/09/30 17:24:47 ggregory Exp $
|
||||
*/
|
||||
public abstract class ValuedEnum extends Enum {
|
||||
|
||||
|
|
|
@ -17,9 +17,11 @@ limitations under the License.
|
|||
<body>
|
||||
<p>
|
||||
<b>Deprecated</b> and replaced by {@link org.apache.commons.lang.enums.ValuedEnum org.apache.commons.lang.enums.ValuedEnum}
|
||||
and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
|
||||
<a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code>
|
||||
is a Java 1.5 keyword.
|
||||
and will be removed in version 3.0.
|
||||
</p>
|
||||
<p>
|
||||
All classes in this package are deprecated and repackaged to {@link org.apache.commons.lang.enums}
|
||||
since <code>enum</code> is a Java 1.5 keyword.
|
||||
</p>
|
||||
<p>
|
||||
Provides an implementation of the C style <code>enum</code> in the Java world.
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.apache.commons.lang.StringUtils;
|
|||
* however that a more robust type-safe class-based solution can be designed. This
|
||||
* class follows the basic Java type-safe enumeration pattern.</p>
|
||||
*
|
||||
* <p><em>NOTE:</em>Due to the way in which Java ClassLoaders work, comparing
|
||||
* <p><em>NOTE:</em> Due to the way in which Java ClassLoaders work, comparing
|
||||
* Enum objects should always be done using <code>equals()</code>, not <code>==</code>.
|
||||
* The equals() method will try == first so in most cases the effect is the same.</p>
|
||||
*
|
||||
|
@ -230,7 +230,7 @@ import org.apache.commons.lang.StringUtils;
|
|||
* @author Mike Bowler
|
||||
* @author Matthias Eichel
|
||||
* @since 2.1 (class existed in enum package from v1.0)
|
||||
* @version $Id: Enum.java,v 1.2 2004/06/01 20:54:57 scolebourne Exp $
|
||||
* @version $Id: Enum.java,v 1.3 2004/09/30 17:24:47 ggregory Exp $
|
||||
*/
|
||||
public abstract class Enum implements Comparable, Serializable {
|
||||
|
||||
|
|
|
@ -15,8 +15,8 @@ limitations under the License.
|
|||
-->
|
||||
<html>
|
||||
<body>
|
||||
Extends <code>java.math</code> for business mathematical classes. This package is intended for business
|
||||
mathematical classes, not scientific ones.
|
||||
Extends {@link java.math} for business mathematical classes. This package is intended for business
|
||||
mathematical use, not scientific use.
|
||||
@since 2.0
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -16,7 +16,7 @@ limitations under the License.
|
|||
<html>
|
||||
<body>
|
||||
Provides highly reusable static utility methods, chiefly concerned
|
||||
with adding value to <code>java.lang</code> and other standard core classes.
|
||||
with adding value to {@link java.lang} and other standard core classes.
|
||||
@since 1.0
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue