Hello everybody,
a few months ago StringUtils#isAnyNotEmpty(CharSequence...) and
StringUtils#isAnyNotBlank(CharSequence...) were added
(https://issues.apache.org/jira/browse/LANG-1270).
Now there is a pull request which purposes adding the inverse of these
methods named isAllEmpty(CharSequence...) and
isAllBlank(CharSequence...)
(https://github.com/apache/commons-lang/pull/221)
Duncan Jones commented on the pull request: "I don't think we should add
methods that are simply the inverse of another method."
On the other hand similar method "pairs" already exist:
isEmpty/isNotEmpty, isBlank/isNotBlank, isAnyEmpty/isNoneEmpty,
containsAny/containsNone
What do you think, should we add these methods?
-Pascal