List of utility methods to do Collection Empty
boolean | isEmpty(Collection is Empty return collection == null || collection.size() == 0;
|
boolean | isEmpty(Collection Is the provided collection null or empty? return collection == null || collection.isEmpty();
|
boolean | isEmpty(Collection Checks if is empty. return collection == null || collection.isEmpty();
|
Collection | isEmpty(Collection is Empty if (collection == null || collection.isEmpty()) { throw new IllegalArgumentException(messgae); return collection; |
boolean | isEmpty(Collection is Empty return items == null || items.isEmpty();
|
boolean | isEmpty(Collection is null or its size is 0 isEmpty(null) = true; isEmpty({}) = true; isEmpty({1}) = false; return (c == null || c.size() == 0);
|
boolean | isEmpty(final Collection values) is Empty return (values == null) || values.isEmpty();
|
boolean | isEmpty(final Collection> coll) Return if a collection is empty. return coll == null || coll.isEmpty();
|
boolean | isEmpty(final Collection> collection) Returns true if the given collection is null or empty. return collection == null || collection.isEmpty();
|
boolean | isEmpty(final Collection> collection) is Empty if (null == collection) { return true; } else { return collection.isEmpty(); |