Source Code : Jakarta Commons toString Builder
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Jakarta Commons toString Builder
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
public class Main {
private String id;
private String firstName;
private String lastName;
public Main() {
}
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", id).append(
"firstName", firstName).append("lastName", lastName).toString();
}
public static void main(String[] args) {
Main example = new Main();
example.id = "1";
example.firstName = "First Name";
example.lastName = "Last Name";
System.out.println("example = " + example);
}
}
Thank with us