Package org.apache.commons.lang.builder

Examples of org.apache.commons.lang.builder.ToStringBuilder


    return destClass;
  }

  @Override
  public String toString() {
    return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("source class", getSrcClassName()).append(
        "destination class", getDestClassName()).append("map-id", mapId).toString();
  }
View Full Code Here


    return RelationshipType.NON_CUMULATIVE.equals(relationshipType);
  }

  @Override
  public String toString() {
    return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("source field", srcField).append("destination field",
        destField).append("type", type).append("customConverter", customConverter).append("relationshipType", relationshipType)
        .append("removeOrphans", removeOrphans).append("mapId", mapId).append("copyByReference", copyByReference).append(
            "copyByReferenceOveridden", copyByReferenceOveridden).append("srcTypeHint", srcHintContainer).append("destTypeHint",
            destHintContainer).toString();
  }
View Full Code Here

   * @return The command associated with this dto
   */
  public abstract String getCommand();

  public String toString() {
    return new ToStringBuilder(this).append(overwrite).append(compress).append(outputPdfVersion).toString();
  }
View Full Code Here

    T other = (T) arg0;
    return this.getCode().compareTo(other.getCode());
  }

  public String toString() {
    return new ToStringBuilder(this).append("name", this.name).append("id", this.id)
        .append("code", this.code).append("engName", this.engName).toString();
  }
View Full Code Here

  public void setScope(int scope) {
    this.scope = scope;
  }

  public String toString() {
    return new ToStringBuilder(this).append("name", this.name).append("id", this.id)
        .append("remark", this.remark).toString();
  }
View Full Code Here

  public void setPasswordExpiredAt(Date passwordExpiredAt) {
    this.passwordExpiredAt = passwordExpiredAt;
  }

  public String toString() {
    return new ToStringBuilder(this).append("id", this.id).append("password", this.password)
        .append("name", this.getName()).toString();
  }
View Full Code Here

  /**
   * @see java.lang.Object#toString()
   */
  public String toString() {
    return new ToStringBuilder(this).append("pageNo", this.pageNo).append("pageSize", this.pageSize)
        .toString();
  }
View Full Code Here

  /**
   * @see java.lang.Object#toString()
   */
  public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("name", name)
        .append("actionPattern", actionPattern).append("actionSuffix", actionSuffix)
        .append("actionScan", actionScan).append("viewPath", viewPath)
        .append("viewPathStyle", viewPathStyle).append("viewExtension", viewExtension)
        .append("uriPath", uriPath).append("uriPathStyle", uriPathStyle)
        .append("uriExtension", uriExtension).append("defaultMethod", defaultMethod).toString();
View Full Code Here

  /**
   * @see java.lang.Object#toString()
   */
  public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("namespace", namespace)
        .append("name", name).append("method", method).append("params", params).toString();
  }
View Full Code Here

    public void setZip(Integer zip) {
        this.zip = zip;
    }

    public String toString() {
        return new ToStringBuilder(this)
            .append("id", getId())
            .toString();
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.lang.builder.ToStringBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.