List of usage examples for org.apache.commons.lang.builder ToStringBuilder append
public ToStringBuilder append(String fieldName, short[] array)
Append to the toString
a short
array.
From source file:com.funambol.pushlistener.service.registry.RegistryEntry.java
/** * Returns a string representation of the object. * @return a string representation of the object. *///from w ww . j av a2 s .c o m @Override public String toString() { ToStringBuilder sb = new ToStringBuilder(this); sb.append("id", id); sb.append("period", period); sb.append("active", active); sb.append("taskBeanFile", taskBeanFile); sb.append("lastUpdate", lastUpdate); sb.append("status", status); if (hasProperties()) { for (String key : properties.keySet()) { if (key != null) { Object value = properties.get(key); sb.append(key, value); } } } return sb.toString(); }
From source file:ch.systemsx.cisd.openbis.generic.shared.dto.EntityPropertyPE.java
@Override public final String toString() { final ToStringBuilder builder = new ToStringBuilder(this, ModifiedShortPrefixToStringStyle.MODIFIED_SHORT_PREFIX_STYLE); builder.append("entityTypePropertyType", getEntityTypePropertyType()); builder.append("value", tryGetUntypedValue()); return builder.toString(); }
From source file:eu.datex2.schema._2_0rc2._2_0.OpenlrLocationReferencePoint.java
/** * {@inheritDoc}/*from ww w .j a v a 2 s . c o m*/ */ @Override public final void toString(final ToStringBuilder toStringBuilder) { super.toString(toStringBuilder); OpenlrPathAttributes theOpenlrPathAttributes; theOpenlrPathAttributes = this.getOpenlrPathAttributes(); toStringBuilder.append("openlrPathAttributes", theOpenlrPathAttributes); ExtensionType theOpenlrLocationReferencePointExtension; theOpenlrLocationReferencePointExtension = this.getOpenlrLocationReferencePointExtension(); toStringBuilder.append("openlrLocationReferencePointExtension", theOpenlrLocationReferencePointExtension); }
From source file:com.funambol.pushlistener.example.DummyRandomSubmitterLogParser.java
/** * A string representation of this ScheduledTaskWrapper * * @return a string representation of this ScheduledTaskWrapper *//*from ww w .j a va 2 s .c om*/ @Override public String toString() { ToStringBuilder sb = new ToStringBuilder(this); sb.append("id", id); sb.append("date", dateFormat.format(date)); sb.append("type", type); return sb.toString(); }
From source file:es.pode.administracion.presentacion.adminusuarios.activarUsuario.ActivarUsuarioFormImpl.java
public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("id", this.id); builder.append("usuario", this.usuario); return builder.toString(); }
From source file:es.pode.administracion.presentacion.catalogacion.altaCatalogadores.AltaCatalogadoresFormImpl.java
public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("nombre", this.nombre); builder.append("descripcion", this.descripcion); return builder.toString(); }
From source file:es.pode.empaquetador.presentacion.archivos.gestor.GestorArchivosCatalogarFormImpl.java
public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("identificador", this.identificador); builder.append("returnURL", this.returnURL); return builder.toString(); }
From source file:es.pode.empaquetador.presentacion.avanzado.organizaciones.elementos.gestor.GestorElementosMetadatoFormImpl.java
public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("identifier", this.identifier); builder.append("returnURL", this.returnURL); return builder.toString(); }
From source file:es.pode.modificador.presentacion.configurar.objetos.ConfigurarObjetosSubmitFormImpl.java
public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("action", this.action); builder.append("option", this.option); return builder.toString(); }
From source file:es.pode.modificador.presentacion.pendientes.ListadoModificarFormImpl.java
public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("tarea", this.tarea); builder.append("idModificacion", this.idModificacion); return builder.toString(); }