Lang version 1.0.1 serial compatability

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137533 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-07-30 23:17:23 +00:00
parent 7f9f65f7e2
commit d793a1fd62
2 changed files with 7 additions and 3 deletions

View File

@ -204,11 +204,11 @@
* @author Chris Webb
* @author Mike Bowler
* @since 1.0
* @version $Id: Enum.java,v 1.16 2003/07/30 23:13:09 scolebourne Exp $
* @version $Id: Enum.java,v 1.17 2003/07/30 23:17:23 scolebourne Exp $
*/
public abstract class Enum implements Comparable, Serializable {
/** Serialization id */
/** Lang version 1.0.1 serial compatability */
static final long serialVersionUID = -487045951170455942L;
// After discussion, the default size for HashMaps is used, as the

View File

@ -133,9 +133,13 @@
* @author Apache Avalon project
* @author Stephen Colebourne
* @since 1.0
* @version $Id: ValuedEnum.java,v 1.9 2003/07/30 23:13:09 scolebourne Exp $
* @version $Id: ValuedEnum.java,v 1.10 2003/07/30 23:17:23 scolebourne Exp $
*/
public abstract class ValuedEnum extends Enum {
/** Lang version 1.0.1 serial compatability */
static final long serialVersionUID = -7129650521543789085L;
/**
* The value contained in enum.
*/