UPDATE: Disregard this question. I had an inadvertent import in my abstract class that was the same name as COLUMNS... Someone please delete.
I'm encountering a weird issue with Generics and Enum. Here are the relevant code:
public abstract class AbstractModel<E extends Enum<? extends E>>
{
protected abstract Object getValue(int row, E column);
}
enum COLUMNS
{
col1, col2, col3
}
public class ImplModel extends AbstractModel<COLUMNS>
{
@Override
protected Object getValue(int rowIndex, COLUMNS column)
{
return "stuff";
}
}
Eclipse gives me two errors:
The type ImplModel must implement the inherited abstract method AbstractModel.getValue(int, Enum)
and
The method getValue(int, COLUMNS) of type ImplModel must override or implement a supertype method
WTF! What am I doing wrong? Is this a bug?
