Skip to content
Advertisement

Utility method to convert Boolean into boolean and handle null in Java

Is there a utility method in Java which converts Boolean into boolean and automatically handles null reference to Boolean as false?

Advertisement

Answer

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.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement