List of utility methods to do Collection Empty
boolean | isNotEmpty(Collection extends Object> list) is Not Empty return (list != null) && (!list.isEmpty());
|
boolean | isNotEmpty(Collection> c) Returns true if the passed collection is not null and has size > 0.
return (c != null) && (c.size() > 0);
|
boolean | isNotEmpty(Collection> c) is Not Empty if (c == null) { return false; return !c.isEmpty(); |
boolean | isNotEmpty(Collection> c) is Not Empty return ((c != null) && (c.size() > 0));
|
boolean | isNotEmpty(Collection> col) is Not Empty return !isEmpty(col);
|
boolean | isNotEmpty(Collection> colecao) is Not Empty return colecao != null && !colecao.isEmpty();
|
boolean | isNotEmpty(Collection> coll) is Not Empty return !isEmpty(coll);
|
boolean | isNotEmpty(Collection> collection) is Not Empty return (collection != null && !collection.isEmpty());
|
boolean | isNotEmpty(Collection> collection) is Not Empty return collection != null && !collection.isEmpty();
|
boolean | isNotEmpty(Collection> collection) is Not Empty return !isEmpty(collection);
|