List of usage examples for org.apache.commons.lang.builder ToStringStyle DEFAULT_STYLE
ToStringStyle DEFAULT_STYLE
To view the source code for org.apache.commons.lang.builder ToStringStyle DEFAULT_STYLE.
Click Source Link
From source file:org.zeroturnaround.jrebel.gradle.dsl.RebelDslWebResource.java
public String toString() { ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE); builder.append("directory", directory); builder.append("excludes", excludes); builder.append("includes", includes); builder.append("target", target); return builder.toString(); }
From source file:org.zeroturnaround.jrebel.gradle.model.RebelClasspath.java
public String toString() { ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE); builder.append("resources", resources); builder.append("fallback", fallback); builder.append("omitDefaultClassesDir", omitDefaultClassesDir); builder.append("omitDefaultResourcesDir", omitDefaultResourcesDir); return builder.toString(); }
From source file:org.zeroturnaround.jrebel.gradle.model.RebelWar.java
public String toString() { ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE); builder.append("path", path); builder.append("originalPath", path); return builder.toString(); }
From source file:reconf.client.setup.ConnectionSettings.java
@Override public String toString() { return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("url", getUrl()) .append("timeout", getTimeout()).append("time-unit", getTimeUnit()) .append("max-retry", getMaxRetry()).toString(); }
From source file:reconf.client.setup.LocalCacheSettings.java
@Override public String toString() { ToStringBuilder result = new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE) .append("location", getBackupLocation()).append("compressed", isCompressed()) .append("max-log-file-size-mb", getMaxLogFileSize()); return result.toString(); }