public class StringUtils extends Object
| Constructor and Description |
|---|
StringUtils() |
| Modifier and Type | Method and Description |
|---|---|
static <T> String |
join(Collection<T> collection,
CharSequence joinedBy)
Joins the elements of the provided collection into a single String containing the provided list of elements.
|
public static <T> String join(Collection<T> collection, CharSequence joinedBy)
No delimiter is added before or after the list.
Empty collections return an empty String.
Copyright © 2016–2017. All rights reserved.