List of utility methods to do Collection Empty
boolean | isEmpty(Collection collection) is Empty return collection == null || collection.isEmpty();
|
boolean | isEmpty(Collection collection) is Empty if (null == collection || collection.isEmpty()) { return true; return false; |
boolean | isEmpty(Collection collection) Is empty. return (collection == null || collection.isEmpty());
|
boolean | isEmpty(Collection items) Returns true if the collection is null or contains no elements. return (items == null || items.size() == 0);
|
boolean | isEmpty(Collection list) is Empty return (list == null || list.size() == 0);
|
boolean | isEmpty(Collection v) See Javadoc above boolean retVal = true; if (v == null || v.isEmpty() || v.size() == 0) { retVal = true; } else { retVal = false; return retVal; |
boolean | isEmpty(Collection extends Object> col) is Empty return !isNotEmpty(col);
|
boolean | isEmpty(Collection> c) is Empty return c == null || c.isEmpty();
|
boolean | isEmpty(Collection> c) Checks if collection is empty. return c == null || c.isEmpty();
|
boolean | isEmpty(Collection> c) is Empty return ((c == null) || (c.size() == 0));
|