Lets you insert superfluous parentheses automatically to avoid any doubts about how an expression is evaluated..
When enabled, Jalopy inserts parentheses around expressions that involve more than two terms in order to clarify their precedence.
It is always good advise to use more parentheses than you think you need. They may not be needed, but they add clarity and don't cost anything.
Lets you insert parentheses around the throw expression to treat the statement like a function call.
Since 1.6
Example 2.21. Throw statement with parentheses
if ( condition ) throw ( new IllegalStateException() );
Lets you insert parentheses around the return expression to treat the statement like a function call.
Since 1.6