ProGuard

proguard.util
Class ListUtil

java.lang.Object
  extended byproguard.util.ListUtil

public class ListUtil
extends Object

This class provides some utility methods for working with java.util.List objects.


Constructor Summary
ListUtil()
           
 
Method Summary
static List commaSeparatedList(String string)
          Creates a List of String objects from the given comma-separated String.
static String commaSeparatedString(List list)
          Creates a comma-separated String from the given List of String objects.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListUtil

public ListUtil()
Method Detail

commaSeparatedString

public static String commaSeparatedString(List list)
Creates a comma-separated String from the given List of String objects.


commaSeparatedList

public static List commaSeparatedList(String string)
Creates a List of String objects from the given comma-separated String.


ProGuard