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 call
Java builder
code
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
- Select the code to be formatted
- Press the shortcut keyAlt+Enter
- choose
Fluent format
Fluent build
- Cursor moves to Java Builder code
- Press the shortcut keyAlt+Enter
- choose
Fluent build