List of utility methods to do Array Empty Check
boolean | isNotEmpty(T[] array) Checks if an array of Objects is not empty or not null . return (array != null && array.length != 0);
|
boolean | isNotEmpty(T[] array) is Not Empty return false == isEmpty(array);
|
boolean | isNotEmpty(T[] array) Returns if the given array is null or empty. return !isEmpty(array);
|
boolean | isNotEmpty(T[] array) Returns if the given array is null or empty. return !isEmpty(array);
|
boolean | isNotEmpty(T[] array) is Not Empty return false == isEmpty(array);
|
boolean | isNotNullAndNotEmpty(final Object[] array) is Not Null And Not Empty return !(array == null || array.length == 0);
|
boolean | isNotNullOrEmpty(T[] array) is Not Null Or Empty return !isNullOrEmpty(array);
|
boolean | isNullOrEmpty(Object[] array) is Null Or Empty return array == null || array.length == 0;
|
boolean | isNullOrEmpty(String[] s) is Null Or Empty if ((s == null) || (s.length == 0)) return true; for (int i = 0; i < s.length; i++) { if (!isNullOrEmpty(s[i])) { return false; return true; ... |
boolean | isNullOrEmpty(T[] array) is Null Or Empty return array == null || array.length == 0;
|