8
Which order do you prefer for null testing ternary expressions?
(programming.dev)
For discussing Java, the JVM, languages that run on the JVM, and other related technologies.
If I had to go with the ternary operator, I would choose not to negate the statement for the sake of readability.
If I had free will of choice I would prefer using the Optionals API, like @MagicShel@programming.dev did.