Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I cast a value from Enum1 to Enum 2 in Java? Here is an example of what I'm trying to do :

public enum Enum1 {
  ONE,
  TWO,
  THREE;
}

public enum Enum1 {
  FOUR,
  FIVE,
  SIX;
}

So I want to do something like this:

Enum2 en2 = (Enum2)ONE;

Is it possible and how can I do that?

Thanks in advance!

share|improve this question
6  
What would you expect en2 to hold when you "cast" Enum1.ONE to it? – Joachim Sauer Sep 2 '11 at 13:57

7 Answers

up vote 1 down vote accepted

You cannot cast from one enum to another, however each enum has guaranteed order, and you can easily translate one enum to another (preserving order). For example:

enum E1 {
    ONE, TWO, THREE,
}

enum E2 {
    ALPHA, BETA, GAMMA,
}

we can translate E1.TWO to/from E2.BETA by:

static E2 E1toE2(E1 value) {
    return E2.values()[value.ordinal()];
}

static E1 E2toE1(E2 value) {
    return E1.values()[value.ordinal()];
}
share|improve this answer
Thanks mate! This works! – Android-Droid Sep 3 '11 at 7:39

It's not possible. Enum1 and Enum2 are different types with nothing in common.

share|improve this answer
2  
+1: Enums in Java don't behave like Enums in C or C#. They're not backed by some constant numeric value. They're actually full-blown objects with some special compiler tricks to allow them to work in switch cases and such. But even if it were like C, I'd consider it bad design to try to do a straight-across cast from one enum type to another, based on what they're supposed to represent from a programming standpoint. – StriplingWarrior Sep 2 '11 at 14:01
I second that. Wanting to cast enums us just plain wrong. – Angel O'Sphere Sep 2 '11 at 14:22

You can't ; but you can create a static method in your enums, with a translation code. But you must have a clear idea of the rules you want to implement.

share|improve this answer
I'm not really sure how to do that actually. – Android-Droid Sep 2 '11 at 14:07
it must not be a static method, an instance method would also do (agreed it's more work to maintain for bigger enums). @Bombastic: enums are objects enum Enum1 { ONE { public Enum2 toEnum2() { return Enum2.FOUR; } },... you should also add an abstract method to the whole enum. – Carlos Heuberger Sep 2 '11 at 14:23

You can't do that, because they're objects of different classes.

You could convert from one to the other based on ordinal value or name, but I'd question the design of any program that needed to do that.

share|improve this answer

A cast operation is not possible, but you can write a static member function for enum1 that casts enum2 to enum1:

public static Enum1 fromEnum2(Enum2 enum2) {
    ...
}

By the way, you can assign an ID to every constant of both enums which simplifies the implementation.

Here is a tutorial on enums.

share|improve this answer

You can define a method in Enum1 to return the corresponding Enum2:

enum Enum1 {
    ONE {
        @Override
        public Enum2 toEnum2() {
            return Enum2.ALFA;
        }
    },
    TWO {
        @Override
        public Enum2 toEnum2() {
            return Enum2.BETA;
        }
    }
    ,
    THREE {
        @Override
        public Enum2 toEnum2() {
            return Enum2.GAMMA;
        }
    }
    ;

    public abstract Enum2 toEnum2();
}

enum Enum2 {
    ALFA, BETA, GAMMA;
}

or, a bit more readable (IMO):

enum Enum1 {
    ONE(Enum2.ALFA), 
    TWO(Enum2.BETA), 
    THREE(Enum2.GAMMA);

    private final Enum2 enum2;

    private Enum1(Enum2 enum2) {
        this.enum2 = enum2;
    }

    public Enum2 toEnum2() {
        return enum2;
    }
}

enum Enum2 {
    ALFA, BETA, GAMMA;
}

EDIT:
if you need to maintain the 2 enums decoupled, create a map containing the mapping from Enum1 to Enum2 (in a 3rd utility class).

share|improve this answer

It probably won't help you, but you can have

public enum Enum1 implements MyInterface {...}
public enum Enum2 implements MyInterface {...}

We don't have enough information about what you are trying to do to help you. It makes no sense as it is to cast an enum to another enum.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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