* @param collection The collection to convert.
* @param delim The delimiter to use.
* @return The delimited string.
*/
public static <T> String collectionToDelimetedString(Collection<T> collection, String delim) {
return collectionToDelimetedString(collection, delim, new StringTextConverter());
}