List of utility methods to do Object Array Join
String | join(Object[] array, String separator) join if (array == null) { return null; return join(array, separator, 0, array.length); |
String | join(Object[] array, String separator, int startIndex, int endIndex) join if (array == null) { return null; if (separator == null) { separator = ""; int noOfItems = (endIndex - startIndex); if (noOfItems <= 0) { ... |