@Deprecated replaced by intellij-fluent-tool
Formats the Java code in a fluent style, and generates chained methods for the Java builder.
● Wrap the invocation of each chained method on a separate line
● Generate the all chained methods for the builder
Before:
IntStream.range(1, 2).map(i -> i + 1).count();
After formatted:
IntStream.range(1, 2)
.map(i -> i + 1)
.count();
Select the code -> press Alt+Enter -> select Fluent format
Cursor at the code of Java builder -> press Alt+Enter -> select Fluent build