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

If I need to add an enum attribute to a list, how do I declare the list. Let us say the enum class is:

public enum Country{ USA,CANADA;}

Iwant to do:

List<String> l = new ArrayList<String>();
l.add(Country.USA);

What needs to be used instead of List<String>?

share|improve this question
added Java tag, remove it if I'm wrong – Binyamin Sharet Aug 7 '11 at 0:11
Java or C#? Please specify. – 0A0D Aug 7 '11 at 0:12

3 Answers

up vote 4 down vote accepted

If you want the string type use this:

l.add(Country.USA.name());

otherwise the answer of MByD

share|improve this answer
1  
Why not l.add(Country.USA.toString()) – Victor Aug 7 '11 at 1:44

Should be:

List<Country> l = new ArrayList<Country>();
l.add(Country.USA); // That one's for you Code Monkey :)
share|improve this answer
would it be different for C#? just curious – Paul Bellora Aug 7 '11 at 0:15
Don't know C# at all. According to the OPs previous questions, it is java... – Binyamin Sharet Aug 7 '11 at 0:16
+1 correct answer – Eng.Fouad Aug 7 '11 at 0:17
+1 but you are missing the second part, the addition of the enum value. – 0A0D Aug 7 '11 at 0:20

If you want to hold any enum, use this:

List<? extends Enum<?>> list = new ArrayList<Country>();
Enum<?> someEnumValue = list.get(0); // Elements can be assigned to Enum<?>
System.out.println(someEnumValue.name()); // You can now access enum methods
share|improve this answer
You can't add elements to a List<? extends Enum<?>>. Better use List<Enum<?>> for this. – Paŭlo Ebermann Aug 7 '11 at 1:32
@Paulo good point, but then you can't assign: Type mismatch: cannot convert from ArrayList<MyEnumClass> to List<Enum<?>>. Maybe this idea isn't useful here :( – Bohemian Aug 7 '11 at 16:46
Of course, you would use new ArrayList<Enum<?>>(). An ArrayList<MyEnumClass> can't contain anything which is not an MyEnumClass object (without violating type-safety). – Paŭlo Ebermann Aug 7 '11 at 16:52

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.