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

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

Introduction

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

Prototype

ToStringStyle DEFAULT_STYLE

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

Click Source Link

Document

The default toString style.

Usage

From source file:com.photon.phresco.commons.model.License.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString()).toString();
}

From source file:com.photon.phresco.commons.model.TechnologyOptions.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("option", getOption()).toString();
}

From source file:com.photon.phresco.util.NodeConfiguration.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("capabilities", getCapabilities())
            .append("configuration", getConfiguration()).toString();
}

From source file:com.photon.phresco.commons.model.Tweet.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("id", id).append("message", message)
            .toString();/*w  ww  .ja v a2 s  .c  om*/
}

From source file:com.photon.phresco.commons.model.PlatformType.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("type", getType())
            .append("bit", getBit()).toString();
}

From source file:com.photon.phresco.commons.model.TechnologyGroup.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString()).append("id", getId())
            .append("name", getName()).append("techInfos", getTechInfos()).append("appTypeId", getAppTypeId())
            .toString();/* w w w . j  a  va2  s.co m*/
}

From source file:com.photon.phresco.util.NodeCapability.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("browserName", getBrowserName())
            .append("maxInstances", getMaxInstances()).append("seleniumProtocol", getSeleniumProtocol())
            .toString();//from   ww w  .java  2s  .c  o m
}

From source file:com.photon.phresco.service.model.Modules.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("id", id).append("moduleId", moduleId)
            .toString();//from   w  w  w .java2  s .co m
}

From source file:com.photon.phresco.service.dao.CustomerBaseDAO.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("customerIds", getCustomerIds()).append("isUsed", isUsed()).toString();
}

From source file:com.sccl.attech.modules.sms.response.SmsResponse.java

/**
 * @see java.lang.Object#toString()/* w  ww . ja  va 2 s  .c o m*/
 */
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("resultInfo", this.resultInfo)
            .append("requestId", this.requestId).toString();
}