IntelliJ has the cool feature to generate Java getters. For example, for a field private final String foo
, it will generate a getter getFoo()
.
Is there any way I can configure IntelliJ to generate getters in the format String foo()
? I am working mainly with immutable objects and prefer this syntax.