Android Utililty Methods Object Array Join

List of utility methods to do Object Array Join

Description

The list of methods to do Object Array Join are organized into topic(s).

Method

Stringjoin(Object[] array, String separator)
join
if (array == null) {
    return null;
return join(array, separator, 0, array.length);
Stringjoin(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) {
...