import org.jetbrains.annotations.Contract; import org.jetbrains.annotations.NotNull; class Foo { @Contract("null -> true") public boolean test(Boolean foo) { return foo.booleanValue(); } }