Example usage for org.apache.commons.lang.builder ToStringBuilder append

List of usage examples for org.apache.commons.lang.builder ToStringBuilder append

Introduction

In this page you can find the example usage for org.apache.commons.lang.builder ToStringBuilder append.

Prototype

public ToStringBuilder append(String fieldName, short[] array) 

Source Link

Document

Append to the toString a short array.

Usage

From source file:es.pode.catalogadorWeb.presentacion.categoriasAvanzado.usoeducativo.UsosEducativosFormEliminarFormImpl.java

public java.lang.String toString() {
    org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder(
            this);
    builder.append("tituloUsoEduRowSelection", this.tituloUsoEduRowSelection);
    builder.append("listadoUsosEdu", this.listadoUsosEdu);
    return builder.toString();
}

From source file:eu.datex2.schema._2_0rc2._2_0.OpenlrPathAttributes.java

/**
 * To string.//www .  java2s .  c om
 * 
 * @param toStringBuilder
 *            the to string builder
 */
public final void toString(final ToStringBuilder toStringBuilder) {
    OpenlrFunctionalRoadClassEnum theOpenlrLowestFRCToNextLRPoint;
    theOpenlrLowestFRCToNextLRPoint = this.getOpenlrLowestFRCToNextLRPoint();
    toStringBuilder.append("openlrLowestFRCToNextLRPoint", theOpenlrLowestFRCToNextLRPoint);
    BigInteger theOpenlrDistanceToNextLRPoint;
    theOpenlrDistanceToNextLRPoint = this.getOpenlrDistanceToNextLRPoint();
    toStringBuilder.append("openlrDistanceToNextLRPoint", theOpenlrDistanceToNextLRPoint);
    ExtensionType theOpenlrPathAttributesExtension;
    theOpenlrPathAttributesExtension = this.getOpenlrPathAttributesExtension();
    toStringBuilder.append("openlrPathAttributesExtension", theOpenlrPathAttributesExtension);
}

From source file:es.pode.catalogadorWeb.presentacion.categoriasAvanzado.clasificacion.ClasificacionFormEliminarFormImpl.java

public java.lang.String toString() {
    org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder(
            this);
    builder.append("listadoClasificacion", this.listadoClasificacion);
    builder.append("tituloClasificacionRowSelection", this.tituloClasificacionRowSelection);
    return builder.toString();
}

From source file:com.funambol.framework.database.Database.java

public String toString() {
    ToStringBuilder sb = new ToStringBuilder(this);

    sb.append("name", name).append("type", type).append("statusCode", statusCode).append("target", target)
            .append("source", source).append("anchor", anchor).append("principal", principal);

    return sb.toString();
}

From source file:es.pode.administracion.presentacion.categorias.crearCategoriaNoticia.CrearCategoriaNoticiaCUFormImpl.java

public java.lang.String toString() {
    org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder(
            this);
    builder.append("nombreCategoria", this.nombreCategoria);
    builder.append("idiomas", this.idiomas);
    return builder.toString();
}

From source file:eu.datex2.schema._2_0rc2._2_0.HeaderInformation.java

/**
 * To string./*from   ww w. j a va  2  s .  c  o  m*/
 *
 * @param toStringBuilder the to string builder
 */
public final void toString(final ToStringBuilder toStringBuilder) {
    AreaOfInterestEnum theAreaOfInterest;
    theAreaOfInterest = this.getAreaOfInterest();
    toStringBuilder.append("areaOfInterest", theAreaOfInterest);
    ConfidentialityValueEnum theConfidentiality;
    theConfidentiality = this.getConfidentiality();
    toStringBuilder.append("confidentiality", theConfidentiality);
    InformationStatusEnum theInformationStatus;
    theInformationStatus = this.getInformationStatus();
    toStringBuilder.append("informationStatus", theInformationStatus);
    UrgencyEnum theUrgency;
    theUrgency = this.getUrgency();
    toStringBuilder.append("urgency", theUrgency);
    ExtensionType theHeaderInformationExtension;
    theHeaderInformationExtension = this.getHeaderInformationExtension();
    toStringBuilder.append("headerInformationExtension", theHeaderInformationExtension);
}

From source file:eu.datex2.schema._2_0rc2._2_0.OpenlrLineAttributes.java

/**
 * To string.//from www.jav  a 2  s .  c  o  m
 *
 * @param toStringBuilder the to string builder
 */
public final void toString(final ToStringBuilder toStringBuilder) {
    OpenlrFunctionalRoadClassEnum theOpenlrFunctionalRoadClass;
    theOpenlrFunctionalRoadClass = this.getOpenlrFunctionalRoadClass();
    toStringBuilder.append("openlrFunctionalRoadClass", theOpenlrFunctionalRoadClass);
    OpenlrFormOfWayEnum theOpenlrFormOfWay;
    theOpenlrFormOfWay = this.getOpenlrFormOfWay();
    toStringBuilder.append("openlrFormOfWay", theOpenlrFormOfWay);
    int theOpenlrBearing;
    theOpenlrBearing = this.getOpenlrBearing();
    toStringBuilder.append("openlrBearing", theOpenlrBearing);
    ExtensionType theOpenlrLineAttributesExtension;
    theOpenlrLineAttributesExtension = this.getOpenlrLineAttributesExtension();
    toStringBuilder.append("openlrLineAttributesExtension", theOpenlrLineAttributesExtension);
}

From source file:ch.systemsx.cisd.openbis.generic.shared.dto.MaterialPE.java

@Override
public final String toString() {
    final ToStringBuilder builder = new ToStringBuilder(this,
            ModifiedShortPrefixToStringStyle.MODIFIED_SHORT_PREFIX_STYLE);
    builder.append("code", getCode());
    builder.append("materialType", getMaterialType());
    return builder.toString();
}

From source file:com.syncnapsis.data.model.Player.java

@Override
public String toString() {
    ToStringBuilder builder = new ToStringBuilder(this);
    builder.append("id", id).append("version", version).append("activated", activated)
            .append("accountStatus", accountStatus).append("accountStatusExpireDate", accountStatusExpireDate)
            .append("role", role.getRolename()).append("roleExpireDate", roleExpireDate)
            .append("user", user.getUsername());
    return builder.toString();
}

From source file:ch.systemsx.cisd.openbis.generic.shared.dto.ProjectPE.java

@Override
public final String toString() {
    final ToStringBuilder builder = new ToStringBuilder(this,
            ModifiedShortPrefixToStringStyle.MODIFIED_SHORT_PREFIX_STYLE);
    builder.append("code", getCode());
    builder.append("description", getDescription());
    return builder.toString();
}