List of usage examples for org.apache.commons.lang.builder ToStringBuilder ToStringBuilder
public ToStringBuilder(Object object)
Constructor for ToStringBuilder
.
This constructor outputs using the default style set with setDefaultStyle
.
From source file:com.safetys.framework.jmesa.core.preference.PropertiesPreferences.java
@Override public String toString() { ToStringBuilder builder = new ToStringBuilder(this); builder.append("properties", properties); return builder.toString(); }
From source file:com.funambol.ctp.core.Bye.java
/** * Returns a string representation of the object. * @return a string representation of the object. *//*from w ww .j a v a 2s . c om*/ public String toString() { ToStringBuilder sb = new ToStringBuilder(this); sb.appendSuper(super.toString()); return sb.toString(); }
From source file:com.lp.server.artikel.fastlanereader.generated.service.WwLagerumbuchungPK.java
public String toString() { return new ToStringBuilder(this).append("i_lagerbewegungidzubuchung", getI_lagerbewegungidzubuchung()) .append("i_lagerbewegungidabbuchung", getI_lagerbewegungidabbuchung()).toString(); }
From source file:com.intuit.tank.vmManager.AgentWatchdog.java
/** * @{inheritDoc/*w ww .ja v a 2 s . c om*/ */ @Override public String toString() { return new ToStringBuilder(this).append("sleepTime", sleepTime).append("maxWaitForStart", maxWaitForStart) .append("maxWaitForResponse", maxWaitForResponse).append("maxRestarts", maxRestarts).toString(); }
From source file:ch.ledcom.log4jtools.filter.CategorizationFilter.java
@Override public String toString() { return new ToStringBuilder(this).append("description", this.description) .append("loggerName", this.loggerName).append("level", this.level) .append("messagePattern", this.messagePattern != null ? this.messagePattern.pattern() : (String) null) .append("throwablePattern", this.throwablePattern != null ? this.throwablePattern.pattern() : (String) null) .append("category", this.category).append("bugTrackerRef", this.bugTrackerRef).toString(); }
From source file:com.lp.server.bestellung.fastlanereader.generated.FLRBestellvorschlagAlleLieferanten.java
public String toString() { return new ToStringBuilder(this).append("lieferant_i_id", getLieferant_i_id()).toString(); }
From source file:com.safetys.framework.jmesa.limit.FilterSet.java
@Override public String toString() { ToStringBuilder builder = new ToStringBuilder(this); for (Iterator<Filter> iter = filters.iterator(); iter.hasNext();) { Filter filter = iter.next(); builder.append(filter.toString()); }/* w ww. j ava2 s .c o m*/ return builder.toString(); }
From source file:com.moisespsena.vraptor.httpclient.core.HttpObjectClientValidationException.java
@Override public String toString() { final String str = new ToStringBuilder(this) .append("messages", messagesToString(getCategorizedMessages().getMessages())).toString(); return str;/*from ww w .j av a 2 s . c o m*/ }
From source file:edu.cornell.med.icb.R.RConfigurationItem.java
/** * Returns a string representation of the this configuration. * @return a string representation of the object. *//*from w w w .ja v a 2 s.c om*/ @Override public String toString() { return new ToStringBuilder(this).append("host", host).append("port", port).toString(); }
From source file:ar.com.zauber.commons.repository.test.model.DireccionDummy.java
/** * @see java.lang.Object#toString()//from ww w . j a v a2 s . co m */ @Override public final String toString() { return new ToStringBuilder(this).append("numero", numero).append("id", id).append("codpostal", codpostal) .append("direccion", direccion).append("reference", this.generateReference()).toString(); }