[lang] ClassCastException in Enum.compareTo

2007-09-15 Thread Samuel Fleischle
Hi, I updated from Commons Lang 2.1 to Commons Lang 2.3 and got some issues with the changed compareTo() method of Enum. Here is my simplified Enum: public class ItemStatus extends Enum { public static final ItemStatus CANCEL = new ItemStatus("CANCEL"); public static final ItemStatus SHIP

RE: [lang] ClassCastException in Enum.compareTo with anonymous inner classes

2007-09-13 Thread Samuel Fleischle
Hi, I updated from Commons Lang 2.1 to Commons Lang 2.3 and got some issues with the changed compareTo() method of Enum with anonymouse inner classes: Here is my simplified Enum: public class ItemStatus extends Enum { // -- Static Fields