For example the following will be reported by this inspection:
And the quickfix will replace that with:
if (s != null && s.equals("literal")) {}
if ("literal".equals(s)) {}
When checkbox is checked, 'equals()' with non-constant argument may also be reported if 'equals()' argument is proven to be not-null.