| java.util.ArrayList uk.org.ponder.stringutil.StringList
StringList | public class StringList extends ArrayList (Code) | | A convenience wrapper for a type-safe list of String objects.
author: Antranig Basman (antranig@caret.cam.ac.uk) |
StringList | public StringList()(Code) | | |
append | public void append(String[] toappend)(Code) | | Appends the members of the supplied array to this list.
Parameters: toappend - The array of Strings to be appended, which may benull . |
append | public void append(StringList toappend)(Code) | | Appends the members of the supplied list to this list.
Parameters: toappend - The list of Strings to be appended, which may benull . |
fromString | public static StringList fromString(String commasep)(Code) | | Construct a StringList from a comma separated list of Strings, trimming
whitespace.
Parameters: commasep - |
|
|