Is there any way to automate writing Builder patterns in IntelliJ?
For example, given this simple class:
class Film { private String title; private
For those wanting to replace "too many parameters" with a builder pattern, do "extract parameter object" and then the convert constructor to builder mentioned in other answers here.