Example usage for org.apache.commons.lang3.builder ToStringStyle NO_FIELD_NAMES_STYLE

List of usage examples for org.apache.commons.lang3.builder ToStringStyle NO_FIELD_NAMES_STYLE

Introduction

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

Prototype

ToStringStyle NO_FIELD_NAMES_STYLE

To view the source code for org.apache.commons.lang3.builder ToStringStyle NO_FIELD_NAMES_STYLE.

Click Source Link

Document

The no field names toString style.

Usage

From source file:com.hack23.cia.service.api.action.common.AbstractRequest.java

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

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

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.NO_FIELD_NAMES_STYLE).append("id", id).toString();
}

From source file:org.apache.nifi.io.nio.AbstractChannelReader.java

@Override
public final String toString() {
    return new ToStringBuilder(this, ToStringStyle.NO_FIELD_NAMES_STYLE).append(uniqueId).toString();
}

From source file:org.efaps.wikiutil.wom.element.text.AbstractURL.java

/**
 * Returns the string representation of this class including the related
 * {@link #url URL}.//from w  w  w.  j  a  va2 s.com
 *
 * @return string representation of this class
 */
@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.NO_FIELD_NAMES_STYLE).appendSuper(super.toString())
            .append("url", this.url).toString();
}