vote up 0 vote down star

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?

flag

80% accept rate
That code compiles for me (JDK 1.6). – Jon Skeet Aug 21 at 14:34

3 Answers

vote up 1 vote down

With the latest Eclipse, I don't get the errors you're getting - so probably an Eclipse bug in your version.

At the same time, I think your AbstractModel should probably be

public abstract class AbstractModel<E extends Enum<E>>

If E extends Enum<? extends E>, then there must be some type T that extends E. So you then have E extends Enum<T>, where T itself extends E, meaning E is extending itself, meaning the only possible resolution here is that the Enum is Enum<E>.

Possibly, it's this oddity that's causing the errors in your version.

link|flag
vote up 0 vote down

I've just copied an pasted your code into my Eclipse Galileo and got no errors. What version of eclipse are you on?

link|flag
vote up 0 vote down

Please delete this question.

The abstract class had an import of a package that should not be there and was causing the problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.