Returns a Collector that joins the provided elements based on the given separator. @param separator The character used to join the elements of the items provided to the Collector @return A Collector that joins the provided elements based on the given separator
(char separator)
| 225 | * @return A Collector that joins the provided elements based on the given separator |
| 226 | */ |
| 227 | public static Collector<CharSequence, ?, String> joining(char separator) |
| 228 | { |
| 229 | return Collectors.joining(Character.toString(separator)); |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * Returns true if the given value has "Valid" separators. This means it does not |