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 |
---|---|
wrapBeforeBody |
Whether to wrap TRY statements before the body.
|
wrapBeforeCatch |
Whether to wrap TRY statements before the CATCH keyword.
|
wrapBeforeFinally |
Whether to wrap TRY statements before the FINALLY keyword.
|
wrapBeforeResourceSpecification |
Whether to wrap TRY -with-resources statements before the opening parenthesis of the resource
specification.
|
TRY
-with-resources statements before the opening parenthesis of the resource
specification. Example:
try (...) { ... }
Default values are underlined.
For a description of the individual values, click them.
TRY
statements before the CATCH
keyword. Example:
try { ... } catch { ... }
Default values are underlined.
For a description of the individual values, click them.
TRY
statements before the body. Example:
try { ... } // <- The body starts with '{'.
Default values are underlined.
For a description of the individual values, click them.