List of utility methods to do Array Empty Check
boolean | ckNonEmpty(String... argvs) ck Non Empty for (String arg : argvs) { if (ckIsEmpty(arg)) { return true; return false; |
boolean | isAnyStringEmpty(String[] array) is Any String Empty if (array == null || array.length <= 0) return false; for (String elem : array) { if (TextUtils.isEmpty(elem)) return true; return false; |
boolean | isEmpty(Object[] array) Checks if an array of Objects is empty or return array == null || array.length == 0;
|
boolean | isEmpty(T[] array) Returns true if the array is null or empty return array == null || array.length == 0;
|
boolean | isEmpty(V[] sourceArray) is null or its length is 0 return (sourceArray == null || sourceArray.length == 0);
|
boolean | isEmpty(boolean[] array) Checks if an array of primitive booleans is empty or return array == null || array.length == 0;
|
boolean | isEmpty(byte[] array) Checks if an array of primitive bytes is empty or return array == null || array.length == 0;
|
boolean | isEmpty(char[] array) Checks if an array of primitive chars is empty or return array == null || array.length == 0;
|
boolean | isEmpty(double[] array) Checks if an array of primitive doubles is empty or return array == null || array.length == 0;
|
boolean | isEmpty(float[] array) Checks if an array of primitive floats is empty or return array == null || array.length == 0;
|