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 |
---|---|
allowMultipleElementValueArrayInitializersPerLine | Whether multiple element value array initializers in one line are allowed. |
allowMultiplePerLine | Whether multiple annotations in one line are allowed. |
allowOneLineDecl | Whether to allow a complete annotation declaration in one single line. |
wrapDeclBeforeAt | Whether to wrap annotation declarations before "@". |
wrapDeclBeforeLCurly | Whether to wrap annotation type declarations before the opening curly brace. |
wrapElementValueArrayInitializerBeforeLCurly | Whether to wrap element value array initializers before the opening curly brace. |
public @interface MyAnno {}
private @interface MyAnno {
Default values are underlined.
For a description of the individual values, click them.
public interface @MyAnnotationType {
Default values are underlined.
For a description of the individual values, click them.
@Column @NotNull
@SuppressWarnings( { ...
Default values are underlined.
For a description of the individual values, click them.
@SuppressWarnings { "unchecked", "rawtypes" }