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.ProjectInfo.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("projectCode", getProjectCode()).append("version", getVersion())
            .append("versionInfo", getVersionInfo()).append("appInfos", getAppInfos())
            .append("noOfApps", getNoOfApps()).append("startDate", getStartDate())
            .append("endDate", getStartDate()).append("preBuilt", isPreBuilt())
            .append("multiModule", isMultiModule()).append("integrationTest", isIntegrationTest())
            .append("groupId", getGroupId()).append("ciType", getCiType()).toString();
}

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

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

From source file:com.photon.phresco.framework.model.PerformancResultInfo.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("graphData", getGraphData())
            .append("label", getLabel()).append("graphAlldata", getGraphAlldata())
            .append("perfromanceTestResult", getPerfromanceTestResult())
            .append("aggregateResult", getAggregateResult()).append("totalStdDev", getTotalStdDev())
            .append("totalThroughput", getTotalThroughput()).append("graphFor", getGraphFor()).toString();
}

From source file:com.photon.phresco.framework.model.PerformanceTestResult.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("min", getMin())
            .append("max", getMax()).append("err", getErr()).append("lastTime", getLastTime())
            .append("avgBytes", getAvgBytes()).append("noOfSamples", getNoOfSamples())
            .append("totalTime", getTotalTime()).append("totalBytes", getTotalBytes())
            .append("maxTs", getMaxTs()).append("minTs", getMinTs()).append("avg", getAvg())
            .append("stdDev", getStdDev()).append("throughtPut", getThroughtPut())
            .append("kbPerSec", getKbPerSec()).append("label", getLabel()).append("times", getTimes())
            .append("totalStdDev", getTotalStdDev()).append("totalThroughput", getTotalThroughput()).toString();
}

From source file:it.govpay.model.BasicModel.java

public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.DEFAULT_STYLE, false);
}

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

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("loginId", loginId).append("email", email).append("firstName", firstName)
            .append("lastName", lastName).append("roleIds", roleIds).append("phrescoEnabled", phrescoEnabled)
            .append("customers", customers).append("token", token).append("authType", authType)
            .append("password", password).append("userPermissions", permissions).toString();
}

From source file:net.jenet.CommandHeader.java

public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.DEFAULT_STYLE);
}

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

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("appTypeId", getAppTypeId()).append("archetypeInfo", getArchetypeInfo())
            .append("techVersions", getTechVersions()).append("reports", getReports())
            .append("plugins", getPlugins()).append("options", getOptions())
            .append("techGroupId", getTechGroupId()).append("archetypeFeatures", getArchetypeFeatures())
            .append("functionalFrameworks", getFunctionalFrameworks()).append("multiModule", isMultiModule())
            .append("subModules", getSubModules()).append("webServices", getWebServices()).toString();
}

From source file:io.reign.Reign.java

@Override
public void process(WatchedEvent event) {
    // log if TRACE
    if (logger.isTraceEnabled()) {
        logger.trace("***** Received ZooKeeper Event:  {}",
                ReflectionToStringBuilder.toString(event, ToStringStyle.DEFAULT_STYLE));

    }//from   ww  w.  j a  v a2 s  . com

    if (shutdown) {
        logger.warn("Already shutdown:  ignoring event:  type={}; path={}", event.getType(), event.getPath());
        return;
    }

    for (Watcher watcher : watcherList) {
        watcher.process(event);
    }
}

From source file:com.sccl.attech.modules.message.entity.AlarmRecords.java

/**
 * @see java.lang.Object#toString()/* w  w  w .ja  v a 2  s .  co m*/
 */
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("id", this.id)
            .append("typeName", this.typeName).append("content", this.content).append("office", this.office)
            .append("name", this.name).append("company", this.company).append("state", this.state)
            .append("location_date", this.location_date).append("location_desc", this.location_desc)
            .append("type", this.type).append("user", this.user).toString();
}