org.apache.commons.lang3.ArrayUtils provides methods to check if Array is empty, but for example for String array which has empty String elementsmeaning character "" it returns true for that isNotEmpty() method, which is correct as that method check only for null and length == 0.
Is there any other method or implementation which checks also if array has empty element ?
I could do it myself, iterate over array and manualy remove such elements of course, but I would better use any library as apache.
Any hints ?