Is there a utility method in Java which converts Boolean
into boolean
and automatically handles null reference to Boolean
as false?
How about:
boolean x = Boolean.TRUE.equals(value);
? That's a single expression, which will only evaluate to true
if value
is non-null and a true-representing Boolean
reference.