Friday, April 15, 2016

The easy way to write toString methods

Apache Commons provides a method that takes all the instance variables in the toString() method:

public String toString(){
  return ToStringBuilder.reflectionToString(this);
}

public String toString(){
  return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}