The list of methods to do Array Value Any are organized into topic(s).
boolean
any(boolean[] b) any
for (int i = 0; i < b.length; i++)
if (b[i])
return true;
return false;
boolean
anyAreEmpty(String... words) Return whether any of the input strings are empty or null.
for (String word : words) {
if ((word == null) || word.isEmpty()) {
return true;
return false;
boolean
anyBlank(String... ss) any Blank
if (null == ss || ss.length == 0) {
return true;
for (String s : ss) {
if (isBlank(s)) {
return true;
return false;
boolean
anyEmpty(String[] array) any Empty
boolean foundEmpty = false;
for (String s : array) {
if ("".equals(s)) {
foundEmpty = true;
break;
return foundEmpty;
...
boolean
anyEmptyField(String[] items) any Empty Field
boolean isEmpty = false;
for (String item : items) {
if (item.isEmpty()) {
isEmpty = true;
break;
return isEmpty;
...