List of utility methods to do Collection Empty
boolean | isNullOrEmpty(Collection> obj) Checks if is null or empty. return (obj == null || obj.isEmpty());
|
boolean | isNullOrEmpty(Collection> s) is Null Or Empty return (s == null || s.isEmpty());
|
boolean | isNullOrEmpty(Collection> values) is Null Or Empty if (values == null || values.isEmpty()) { return true; return false; |
boolean | isNullOrEmpty(final Collection> c) Checks whether the given Collection is null or is empty.
return c == null || c.isEmpty();
|
boolean | isNullOrEmpty(final Collection> collection) is Null Or Empty return (collection == null) || (collection.isEmpty());
|
boolean | isNullOrEmpty(final Collection> value) Tests given value to see if it is empty. return isNull(value) || isEmpty(value);
|
boolean | isNullOrEmpty(final Collection Checks whether a collection is null or empty return collection == null || collection.isEmpty();
|
boolean | isNullOrEmpty(T collection) is Null Or Empty return collection == null || collection.isEmpty();
|
boolean | nullOrEmpty(Collection> coll) null Or Empty return coll == null || coll.isEmpty();
|
boolean | nullOrEmpty(Collection> tested) null Or Empty return ((tested == null) || tested.isEmpty());
|