Is there any way to automate writing Builder patterns in IntelliJ?
For example, given this simple class:
class Film { private String title; private
I have found the Effective Inner Builder to be the best option as it adds null checks and can start with just the members defined.