I have List which I use to convert into String:
    private String convertList(List<String> list)
    {
        String listString = "";
        for (String s : list)
        {
            listString += s + ",";
        }
        return listString;
    }
But I also want to implement the same operation backwards. I want to generate List from String using , as delimiter. How this can be implemented?
 
    