Code Style. Java

Use this page to configure formatting options for Java files. When you change these settings, the Preview pane shows how this will affect your code.

Tabs and Indents

Use tab character

Use the Tab key for indentation. When the checkbox is cleared, IntelliJ IDEA uses spaces instead of tabs.

The Smart tabs checkbox is available if the Use tab character option is enabled.

In this field, specify the number of spaces included in a tab.

In this field, specify the number of spaces to be inserted for each indent level.

Specify the indentation for lines that continue from the previous line, making it clear that they are part of the same statement or block of code. Continuation indents are used when a single statement is too long to fit on one line.

Keep indents on empty lines

If this checkbox is selected, IntelliJ IDEA will keep indents on the empty lines as if they contained some code.

If this checkbox is cleared, IntelliJ IDEA will delete the tab characters and spaces.

In this field, specify the number of spaces to be inserted at the next line before a label statement.

Absolute label indent

If this checkbox is selected, label indentation is counted as an absolute number of spaces. Otherwise, label indentation is counted relative to previous indent levels.

Do not indent top level class members

Select this checkbox to have top level class members located at the class declaration indentation level.

Use indents relative to expression start

Use this checkbox to switch between the two possible indentation behaviors:

Spaces

Use this tab to specify where you want spaces in your code. To have IntelliJ IDEA automatically insert a space at a location, select the checkbox next to this location in the list. The results are displayed in the preview pane.

Wrapping and Braces

In this tab, customize the code style options, which IntelliJ IDEA will apply on reformatting the source code. The left-hand pane contains the list of exceptions ( Keep when reformatting ), and placement and alignment options for the various code constructs (lists, statements, operations, annotations, and so on) The right-hand pane shows the preview.

Alignment takes precedence over indentation options.

Hard wrap at

Use the Hard wrap at field to specify a margin space required on the right side of an element. If you select the Default option, then a value of the right margin from the global settings is used.

Wrap on typing

Use the Wrap on typing settings to specify how the edited text is fitted in the specified Hard wrap at :

Visual guides

Use the Visual guides field to specify multiple right margins. You can leave a default value or enter the number of spaces for your margin. If you want to specify several margins, enter numbers separated by comma.

Keep when reformatting

Use the checkboxes to configure exceptions that IntelliJ IDEA will make when reformatting the source code. For example, by default, the Line breaks checkbox is selected. If your code contains lines that are shorter than a standard convention, you can convert them by disabling the Line breaks checkbox before you reformat the source code.

Wrapping options

The wrapping style applies to the various code constructs, specified in the left-hand pane (for example, method call arguments, method declaration parameters, or assignment statements).

From this list, select the desired wrapping style:

Alignment options

Align when multiline

If this checkbox is selected, a code construct starts at the same column on each next line. Otherwise, the position of a code construct is determined by the current indentation level.

Select this checkbox to have the specified character or characters moved to the next line when the lines are wrapped.

'else' on new line

Use this checkbox to have the corresponding statements or characters moved to the next line.

Select this checkbox to have the code after the specified character moved to a new line.

Special 'else if' treatment

If this checkbox is selected, else if statements are located in the same line.

Otherwise, else if statements are moved to the next line to the corresponding indent level.

Indent 'case' branches

If this checkbox is selected, the case statement is located at the corresponding indent level. Otherwise, case statement is placed at the same indent level with switch .

Braces placement options

Braces placement style

Use this list to specify the position of the opening brace in class declarations , method declarations, and other types of declarations. The available options are:

From this list, choose the braces introduction method for if , for , while , and do () while statements. The available options are:

Chained method calls

Use the following options to format chained method calls and make them easier to read. Note that builder method calls are always wrapped regardless of the settings for chained calls.

Wrap first call

Allow wrapping the first method call in chained methods.

Align when multiline

Align several method calls.

Specify comma-separated names (identifiers) of methods that you want to be treated as builder methods.

For example: withTitle,withYear,addAuthor,withName,withLastName,end,build

Keep builder methods indents

Keep additional indents that you insert manually intact as you reformat code.

Blank lines

Use this tab to define where and how many blank lines you want IntelliJ IDEA to retain and insert in your code after reformatting. For each type of location, specify the number of blank lines to be inserted. The results are displayed in the preview pane.

Keep maximum blank lines

In this area, specify the number of blank lines to be kept after reformatting in the specified locations.

Minimum blank lines

In this area, specify the number of blank lines to be present in the specified locations.

These settings do not influence the number of blank lines before the first and after the last item.

JavaDoc

Define the way Javadoc comments should be aligned.

Define where blank lines should be inserted in Javadoc comments.

In this area, define whether invalid tags should be preserved or not.

In this area, specify additional formatting options for Javadoc comments.

Arrangement

This tab lets you define a set of rules that rearranges your code according to your preferences.

Code arrangement is not a part of code reformatting. To rearrange your code, run the dedicated action or configure the IDE to automatically rearrange code on save.

Use this area to set the grouping rules.

class foo < public function parent() < $this->child1(); $this->child2(); > private function child1() < $this->nested1(); > private function nested1() < $this->nested2(); > private function nested2() < >private function child2() < >>

class foo < public function parent() < $this->child1(); $this->child2(); > private function child1() < $this->nested1(); > private function child2() < >private function nested1() < $this->nested2(); > private function nested2() < >>

Use this area to define elements order as a list of rules, where every rule has a set of matches such as modifier or type.

A matching rule

//methods start public void test() <> private int a() < return 1; >static void r() <> //methods end

Use this area to create a new matching rule or edit an existing one. You can select from the following filters:

This icon appears when you select Order by Name from the Order list. The icon indicates that the items in this rule are sorted alphabetically.

Imports

This table lists actions to be performed when imports are optimized.

In this area, configure general import options.

JSP Imports Layout

In this area, configure how JSP import statements should be organized in your code. The introduced changes are displayed in the Preview pane below.

Packages to Use Import with '*'

In this area, configure a list of packages and classes to be always imported completely.

In this area, configure how import statements should be organized in your code. You can set up certain classes to be positioned first, or last, or one after another. Imported classes will be grouped as per their packages and sorted alphabetically within a package.

Code Generation

Select the default access level for generated fields and methods.

You can either specify it explicitly, or select Escalate to automatically raise it to a necessary level.

Specify whether you want to generate local variables and parameters with the final modifier by default.

Use this area to configure code style for generated comments (line Ctrl+/ and block Ctrl+Shift+/ ):

Override Method Signature

If a lambda expression calls an existing method, it is preferable to refer to the method by name using a method reference. These checkboxes affect the Lambda can be replaced with method reference inspection. If enabled, the corresponding lambda expressions will be highlighted as warnings with a relevant quick-fix. If disabled, the code will not be highlighted, but an intention to replace the lambda expression with a method reference will still be available.