The phrase "wrap before X" means that a line break and spaces appear right before "X", such that "X" is vertically aligned with the first token in the immediately preceding line.
| Name | Description |
|---|---|
| allowMultipleArgsPerLine | Whether multiple method call arguments in one line are allowed. |
| allowMultipleParametersPerLine | Whether multiple method parameter declarations in one line are allowed. |
| allowOneLineDecl | Whether to allow a complete method declaration in one single line. |
| wrapDeclBeforeName | Whether to wrap method declarations between the return type and the method name. |
| wrapMethodDeclBeforeLCurly | Whether to wrap method declarations before the opening curly brace. |
private void meth() { ... }
private static
myMeth(int arg1) {
Default values are underlined.
For a description of the individual values, click them.
private static myMeth(int arg1)
{
Default values are underlined.
For a description of the individual values, click them.