intellij-generateAllSetMethod
intellij-generateAllSetMethod copied to clipboard
Support configurable setter prefix
Plugin is great and it works with setter that starts with name set. On the other hand I got a Builder to a class and would be great to have all builder with* methods calls generated as well.
so what you mean is like this
UserVo convert(User oo){
return UserVo.builder.withUserName(oo.getUserName).withPassword(oo.getPassword).build();
can do this but need some time.