Example usage for org.apache.commons.lang.builder ToStringStyle SIMPLE_STYLE

List of usage examples for org.apache.commons.lang.builder ToStringStyle SIMPLE_STYLE

Introduction

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

Prototype

ToStringStyle SIMPLE_STYLE

To view the source code for org.apache.commons.lang.builder ToStringStyle SIMPLE_STYLE.

Click Source Link

Document

The simple toString style.

Usage

From source file:Main.java

public String toString() {
    return ReflectionToStringBuilder.toString(this, ToStringStyle.SIMPLE_STYLE, true, true);
}

From source file:com.pieframework.model.system.Access.java

@Override
public String toString() {
    return ReflectionToStringBuilder.toString(this, ToStringStyle.SIMPLE_STYLE);
}

From source file:jp.co.ctc_g.rack.core.model.RackEntity.java

@Override
public String toString() {

    return ToStringBuilder.reflectionToString(this, ToStringStyle.SIMPLE_STYLE);
}

From source file:mx.edu.um.model.Pais.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE).append(this.id).append(this.version)
            .append(this.nombre).toString();
}

From source file:com.aeells.hibernate.model.AbstractPersistentObject.java

@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SIMPLE_STYLE);
}

From source file:fr.xebia.demo.wicket.blog.data.Category.java

@Override
public String toString() {
    ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE);
    builder.append("description", description);
    builder.append("name", name);
    builder.append("nicename", nicename);
    return builder.toString();
}

From source file:jp.co.ctc_g.jse.amqp.showcase.business.domain.UserProfile.java

/**
 * {@inheritDoc}
 */
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SIMPLE_STYLE);
}

From source file:com.bcpv.webapp.displaytag.decorators.ReportableListObject.java

/**
 * @see Object#toString()/* www  .  j  av  a 2s  .  c o  m*/
 */
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE) //
            .append("project", this.project) //$NON-NLS-1$
            .append("amount", this.amount) //$NON-NLS-1$
            .append("city", this.city) //$NON-NLS-1$
            .append("task", this.task) //$NON-NLS-1$
            .toString();
}

From source file:com.discursive.jccook.lang.builders.PoliticalCandidate.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE).append("lastName", lastName)
            .append("firstName", firstName).toString();
}

From source file:com.gisgraphy.model.Role.java

/**
 * {@inheritDoc}/*from w ww .  jav a2  s . c  o m*/
 */
@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE).append(this.name).toString();
}