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
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