vote up 4 vote down star
2

I've got four variables and I want to check if any one of them is null. I can do

if (null == a || null == b || null == c || null == d) {
    ...
}

but what I really want is

if (anyNull(a, b, c, d)) {
    ...
}

but I don't want to write it myself. Does this function exist in any common Java library? I checked Commons Lang and didn't see it. It should use varargs to take any number of arguments.

flag

78% accept rate

3 Answers

vote up 6 vote down check

The best you can do with the Java library is, I think:

if (asList(a, b, c, d).contains(null)) {
link|flag
With a static import of java.util.Arrays.asList, I presume? – mmyers Mar 4 at 21:34
Yes. You have to import it someway. Although it is a bit of a cheat... – Tom Hawtin - tackline Mar 4 at 21:37
close to literate programming – Oscar Reyes Mar 4 at 21:39
A little slower, too, one would guess, but no external libraries and no figuring out where to put the anyNull method. – mmyers Mar 4 at 21:40
vote up 13 vote down

I don't know if it's in commons, but it takes about ten seconds to write:

public static boolean anyNull(Object... objs) {
    for (Object obj : objs)
        if (obj == null)
            return true;
    return false;
}
link|flag
Yeah I know but then the question is where to put it. ;) – Steven Huwig Mar 4 at 21:31
Do you have a utilities class of some sort? It seems like I always end up with one. – mmyers Mar 4 at 21:31
Yeah, it's Commons Lang, Commons IO, Commons Collections, etc... – Steven Huwig Mar 4 at 21:34
Well, I just did some scouting around and found a couple of anyNull methods, but they seem to predate varargs. – mmyers Mar 4 at 21:36
nice question and nice answer – Oscar Reyes Mar 4 at 21:38
show 4 more comments
vote up 2 vote down

You asked in the comments where to put the static helper, I suggest

public class All {
    public static final boolean notNull(Object... all) { ... }
}

and then use the qualified name for call, such as

assert All.notNull(a, b, c, d);

Same can then be done with a class Any and methods like isNull.

link|flag
I like that idea very much. – Steven Huwig Mar 9 at 15:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.