XML : How to add String value to a enum Arraylist

I have a list of type enum I need to add String value to it .

  String a= "Apple";  String b= "Mango";    List<Com.UpdateTypeEnum> enumsList = new ArrayList<Com.UpdateTypeEnum>();    

i need to add a and b to the list .

No comments:

Post a Comment