Concatenates the Collection of Objects (converted to Strings using .toString()) into a String using the separator as the delimiter. This method is value-semantic and will not modify or maintain a reference to the given Collection of Objects. @param collection An Collection of objects @p
(Collection<?> collection, char separator)
| 70 | * @return A 'separator' separated String |
| 71 | */ |
| 72 | public static String join(Collection<?> collection, char separator) |
| 73 | { |
| 74 | return join(collection, Character.toString(separator)); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Concatenates the Collection of Objects (converted to Strings using |