vote up 2 vote down star
1

I just got Java5 project that has this error, i tried using Java5 and Java6, but its still there. it worked somehow before(since it was in svn), how can i bypass that compiler error?

flag

It might help to post your code that's erroring – MrWiggles Feb 11 at 11:55
Could you provide a small code sample of what you're trying to achieve? – Mark Pim Feb 11 at 11:56

1 Answer

vote up 7 vote down check

Don't "bypass" the error - it won't do what you want it to. The error is there for good reason.

The enum values are initialized before any other static fields. If you want to do something like adding all the values into a map, do it in a static initializer after everything else:

import java.util.*;

public enum Foo
{
    BAR, BAZ;

    private static final Map<String, Foo> lowerCaseMap;

    static
    {
        lowerCaseMap = new HashMap<String, Foo>();
        for (Foo foo : EnumSet.allOf(Foo.class))
        {
            // Yes, use some appropriate locale in production code :)
            lowerCaseMap.put(foo.name().toLowerCase(), foo);
        }
    }
}
link|flag
Jon - do you know why this error doesn't occur in Eclipse 3.3 but does in 3.4? – MrWiggles Aug 26 at 15:47

Your Answer

Get an OpenID
or

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