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:
parent
7f9f65f7e2
commit
d793a1fd62
|
@ -204,11 +204,11 @@ import org.apache.commons.lang.StringUtils;
|
|||
* @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
|
||||
|
|
|
@ -133,9 +133,13 @@ import org.apache.commons.lang.ClassUtils;
|
|||
* @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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue