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>?