When documenting the name of the corresponding formal parameter for a method
argument, prefer the f(/* foo= */ value)
style of comment.
The problem with e.g. f(false /* exclusive */)
is it can be interpreted
multiple ways:
TIP: When you feel the need to add a parameter comment, consider whether the API could be changed to be more self-documenting.
NOTE: The f(/* foo= */ value)
format leads to compile-time enforcement that
the parameter comment matches the formal parameter name.
Suppress false positives by adding the suppression annotation @SuppressWarnings("ParameterComment")
to the enclosing element.