Making the source code

The Plugin address

The Fluent Tool has been replaced

function

  • Format selected code in Java streaming style
  • One – key generation chain callJava buildercode

The sample

Before formatting:

IntStream.range(1.2).map(i -> i + 1).count(); 
Copy the code

After streaming style formatting:

IntStream.range(1.2)
         .map(i -> i + 1)
         .count();
Copy the code

use

Fluent format

  1. Select the code to be formatted
  2. Press the shortcut keyAlt+Enter
  3. chooseFluent format

Fluent build

  1. Cursor moves to Java Builder code
  2. Press the shortcut keyAlt+Enter
  3. chooseFluent build