public String toString(){
return ReflectionToStringBuilder.toString(this);
}
For the customization of the output,
public String toString(){
return ReflectionToStringBuilder.toString(this,ToStringStyle.MULTI_LINE_STYLE)
.append("lastName",lastName).append("firstName",firstName).toString();
}
No comments:
Post a Comment