NetBeans Got An Excellent toString Generator 📎
One problem - I didn't found any reference to a NBM file and had to build it manually. It is very easy, but it takes few minutes and is inconvenient. I'm sure, that Simon is already working on a CI solution :-).public class ToStringTest { private String name; private int age; private Boolean flag; private String descripton; //was generated @Override public String toString() { return "ToStringTest [" + "age " + age + " " + "descripton " + descripton + " " + "flag " + flag + " " + "name " + name + "]"; } }