| java.lang.Object net.sf.hajdbc.util.Strings
Strings | final public class Strings (Code) | | A set of String utilities.
author: Paul Ferraro since: 2.0 |
Method Summary | |
public static String | join(Collection<String> collection, String delimiter) Performs the reverse of a split operation, joining the elements of the specified collection using the specified delimiter. | public static String | join(String[] strings, String delimiter) Performs the reverse of a split operation, joining the elements of the specified collection using the specified delimiter. |
join | public static String join(Collection<String> collection, String delimiter)(Code) | | Performs the reverse of a split operation, joining the elements of the specified collection using the specified delimiter.
Parameters: collection - a collection of strings Parameters: delimiter - a string to insert between each collection element a new String |
join | public static String join(String[] strings, String delimiter)(Code) | | Performs the reverse of a split operation, joining the elements of the specified collection using the specified delimiter.
Parameters: strings - an array of strings Parameters: delimiter - a string to insert between each array element a new String |
|
|