Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I was surprised by the responses about Optionals. Will have to look into it. As an alternative I have been looking to use the following to guarantee that certain methods cannot/will not return null (below). Maybe that is the better way to go?

return Optional.ofNullable(applications).orElseThrow(NullPointerException::new);

return Optional.ofNullable(applications).orElse(new Application());



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: