vote up 1 vote down star

I have a class that defines its own enum like this:

public class Test
{
    enum MyEnum{E1, E2};

    public static void aTestMethod() {
        Test2(E1);  // << Gives "E1 cannot be resolved" in eclipse.
    }
    public Test2(MyEnum e) {}
}

If I specify MyEnum.E1 it works fine, but I'd really just like to have it as "E1". Any idea how I can accomplish this, or does it have to be defined in another file for this to work?

CONCLUSION: I hadn't been able to get the syntax for the import correct. Since several answers suggested this was possible, I'm going to select the one that gave me the syntax I needed and upvote the others.

By the way, a REALLY STRANGE part of this (before I got the static import to work), a switch statement I'd written that used the enum did not allow the enum to be prefixed by its type--all the rest of the code required it. Hurt my head.

flag

3 Answers

vote up 5 vote down check

Actually, you can do a static import of a nested enum. The code below compiles fine:

package mypackage;

import static mypackage.Test.MyEnum.*;

public class Test
{
    enum MyEnum{E1, E2};

    public static void aTestMethod() {
        Test2(E1);  
    }

    public static void Test2(MyEnum e) {}
}
link|flag
I alluded to this as a solution in my question, but I'd really rather not do that. The enums are only used inside this one file. It just seems strange that this doesn't just automatically work. – Bill K Nov 4 at 22:23
Although you have to use a static import, you do not need to define it in its own class. – Yishai Nov 4 at 22:33
I tried in a few ways and can't get the static import to resolve correctly when it refers to a class inside the class doing the import. – Bill K Nov 4 at 22:39
@Yishai Yeah, I noticed that when doing some testing. – Pascal Thivent Nov 4 at 22:40
@Bill K weird, are you sure you tried import static mypackage.Test.MyEnum.*;? – Pascal Thivent Nov 4 at 22:43
show 1 more comment
vote up 1 vote down

You can do a static import on a nested class:

import static apackage.Test.Enum.*;
link|flag
vote up 1 vote down

If you just want to be able to refer to E1 within your class, you could define a constant variable called E1 in your class:

enum MyEnum{E1, E2};

private static final MyEnum E1 = MyEnum.E1;
link|flag
1  
At that point, I might as well go back to ints--much less verbose/boilerplate. – Bill K Nov 4 at 22:21
Really?? You'd throw out the dozens of great advantages of enums over ints that easily? Anyway, though, import static is the right answer. – Kevin Bourrillion Nov 5 at 0:40

Your Answer

Get an OpenID
or

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