Does java.util.List.isEmpty() check if the list itself is null? Or I'll have to do this check by myself?
for example:
List test = null;
if(!test.isEmpty())
for(Object o : test) {
// do stuff here
}
will this throw a null pointer exception cause test is null?

test == nullwhich method should/can be called? – rsp Jul 16 '12 at 20:32