List of utility methods to do Array Clean
T[] | clean(final T[] array) Removes null or blank items int r, w; final int n = r = w = array.length; while (r > 0) { final T object = array[--r]; if (object == null) continue; if (object instanceof Collection && ((Collection) object).size() <= 0) ... |