I've an enum like this:

public enum PcapLinkType {
  DLT_NULL(0)
  DLT_EN10MB(1)
  DLT_EN3MB(2),
  DLT_AX25(3),
  /*snip, 200 more enums, not always consecutive.*/
  DLT_UNKNOWN(-1);
    private final int value;   

    PcapLinkType(int value) {
        this.value= value;
    }
}

Now I get an int from external input and want the matching input - throwing an exception if a value does not exist is ok, but preferably I'd have it be DLT_UNKNOWN in that case.

int val = in.readInt();
PcapLinkType type = ???; /*convert val to a PcapLinkType */
link|improve this question

73% accept rate
feedback

7 Answers

up vote 6 down vote accepted

You would need to do this manually, by adding a a static map in the class that maps Integers to enums, such as

private static final Map<Integer, PcapLinkType> intToTypeMap = new HashMap<Integer, PcapLinkType>();
static {
    for (PcapLinkType type : PcapLinkType.values()) {
        intToTypeMap.put(type.value, type);
    }
}

public static PcapLinkType fromInt(int i) {
    PcapLinkType type = intToTypeMap.get(Integer.valueOf(i));
    if (type == null) 
        return PcapLinkType.DLT_UNKNOWN;
    return type;
}
link|improve this answer
1  
updated with recommendations from dty, which was a good idea. – MeBigFatGuy Mar 13 '11 at 22:20
I hope you ran my code through a compiler first... I just made it up off the top of my head. I know the technique works - I used it yesterday. But the code is on another machine and this one doesn't have my dev tools. – dty Mar 13 '11 at 22:23
1  
allOf is only available for sets – MeBigFatGuy Mar 13 '11 at 22:29
1  
Also, EnumMap uses the enums as the keys. In this case, the OP wants the enums as the values. – dty Mar 13 '11 at 22:30
feedback

As @MeBigFatGuy says, except you can make your static {...} block use a loop over the values() collection:

static {
    for (PcapLinkType type : PcapLinkType.values()) {
        intToTypeMap.put(type.getValue(), type);
    }
}
link|improve this answer
feedback

You could add a static method in your enum that accepts an int as a parameter and returns a PcapLinkType.

public static PcapLinkType of(int linkType) {

    switch (linkType) {
        case -1: return DLT_UNKNOWN
        case 0: return DLT_NULL;

        //ETC....

        default: return null;

    }
}
link|improve this answer
Better not forget to add an entry to that switch statement if you add a new enum. Not ideal, IMHO. – dty Mar 13 '11 at 22:26
If your enums changes over time, then yes..... – The Elite Gentleman Mar 13 '11 at 22:35
feedback

You can do something like this to automatically register them all into a collection with which to then easily convert the integers to the corresponding enum. (BTW, adding them to the map in the enum constructor is not allowed. It's nice to learn new things even after many years of using Java. :)

public enum PcapLinkType {
    DLT_NULL(0),
    DLT_EN10MB(1),
    DLT_EN3MB(2),
    DLT_AX25(3),
    /*snip, 200 more enums, not always consecutive.*/
    DLT_UNKNOWN(-1);

    private static final Map<Integer, PcapLinkType> typesByValue = new HashMap<Integer, PcapLinkType>();

    static {
        for (PcapLinkType type : PcapLinkType.values()) {
            typesByValue.put(type.value, type);
        }
    }

    private final int value;

    private PcapLinkType(int value) {
        this.value = value;
    }

    public static PcapLinkType forValue(int value) {
        return typesByValue.get(value);
    }
}
link|improve this answer
This was already suggested. In two different forms. – dty Mar 13 '11 at 22:26
That's what you get for double checking your answer before posting. ;) – Esko Luontola Mar 13 '11 at 22:37
feedback

You will have to make a new static method where you iterate PcapLinkType.values() and compare:

public static PcapLinkType forCode(int code) {
    for (PcapLinkType typе : PcapLinkType.values()) {
        if (type.getValue() == code) {
            return type
        }
    }
    return null
 }

That would be fine if it is called rarely. If it is called frequently, then look at the Map optimization suggested by others.

link|improve this answer
1  
Might be expensive if called a lot. Building a static map is likely to give better amortised cost. – dty Mar 13 '11 at 22:24
@dty o(n) with n = 200 - i dont think its an issue – Bozho Mar 13 '11 at 22:48
That's a totally ridiculous statement without a feel for how frequently it's called. If it's called once, fine. If it's called for every packet whizzing past on a 10Ge network then making an algorithm 200x faster is very important. Hence why I qualified my statement with "if called a lot" – dty Mar 14 '11 at 7:46
@dty sure (15chrs) – Bozho Mar 14 '11 at 21:35
feedback

This is what I use:

public enum Quality {ENOUGH,BETTER,BEST;
                     private static final int amount = EnumSet.allOf(Quality.class).size();
                     private static Quality[] val = new Quality[amount];
                     static{ for(Quality q:EnumSet.allOf(Quality.class)){ val[q.ordinal()]=q; } }
                     public static Quality fromInt(int i) { return val[i]; }
                     public Quality next() { return fromInt((ordinal()+1)%amount); }
                    }
link|improve this answer
feedback
static final values[]  = { DLT_NULL, DLT_EN10MB, DLT_EN3MB ...}

...

public static PcapLinkType  getPcapLinkTypeForInt(int num){
    try{
    return values[int];
    }catch(ArrayIndexOutOfBoundsException e){
       return DLT_UKNOWN;
    }
}
link|improve this answer
1  
Expensive if called a lot. Need to remember to update the array (why do you even have it when enums define a .values() method?). – dty Mar 13 '11 at 22:25
@dty Can you elaborate on why its expensive? I can definitely see a few problems 1. in unnecessarily building an array when one already exists 2.It does not satisfy the the non-consecutive requirement. 3. --int would indicate its 1-indexed. – nsfyn55 Mar 14 '11 at 14:10
@dty is it the try/catch? I think it would be fairer to say its expensive if a lot of the values fall in the DLT_UNKNOWN category. – nsfyn55 Mar 14 '11 at 14:16
Sorry, I misread it. It's not expensive at all. – dty Mar 14 '11 at 16:43
I am really surprised to see an array solution voted down and a map solution voted up. What I do dislike here is --int, but it's obviously a typo. – 18446744073709551615 Apr 10 at 7:46
feedback

Your Answer

 
or
required, but never shown

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