I am interested in hearing your feedback. I've recently seen some Java code that is implemented in the following way:
Object1 SomeMethod(String key) {
Object1 object1 = null;
List<Object1> objectList = getAllRecordsWithKeyFromDatabase(key);
if (!objectList.isEmpty()) {
object1 = objectList.get(0);
}
return object1;
}
void AnotherMethod() {
...
Object1 object1 = SomeMethod(key);
if (object1 == null) {
// throw exception
}
// continue working
}
I am always concerned whenever a null is returned without context. I would rather the response from SomeMethod be more explicit and was considering refactoring it. Throwing an exception from SomeMethod could offer a way to do this. It would be in context and occur at the point of failure.
I am wondering if there is another way where SomeMethod could inform AnotherMethod that 'nothing was found in the database' instead of assuming that null always equaled 'not found'. I thought that a NullObject could be used, but it is unclear to me how AnotherMethod should avoid 'continue working' if the data was not found.
How would you refactor the code?
nullshould be okay, as long as it's clearly documented in the Javadoc. What other meaning do you thinknullcould have in this context? Throwing an exception doesn't seem quite right, since finding no rows is not generally an exceptional condition. – Hippo Apr 21 '11 at 17:54