toString method

String toString()
override

A string representation of this object.

Some classes have a default textual representation, often paired with a static parse function (like int.parse). These classes will provide the textual representation as their string representation.

Other classes have no meaningful textual representation that a program will care about. Such classes will typically override toString to provide useful information when inspecting the object, mainly for debugging or logging.

Implementation

String toString() {
  StringBuffer ret = new StringBuffer("PlanNodeDescription(");

  ret.write("name:");
  if (this.name == null) {
    ret.write("null");
  } else {
    ret.write("BINARY");
  }

  ret.write(", ");
  ret.write("id:");
  ret.write(this.id);

  ret.write(", ");
  ret.write("output_var:");
  if (this.output_var == null) {
    ret.write("null");
  } else {
    ret.write("BINARY");
  }

  if (isSetDescription()) {
    ret.write(", ");
    ret.write("description:");
    if (this.description == null) {
      ret.write("null");
    } else {
      ret.write(this.description);
    }
  }

  if (isSetProfiles()) {
    ret.write(", ");
    ret.write("profiles:");
    if (this.profiles == null) {
      ret.write("null");
    } else {
      ret.write(this.profiles);
    }
  }

  if (isSetBranch_info()) {
    ret.write(", ");
    ret.write("branch_info:");
    if (this.branch_info == null) {
      ret.write("null");
    } else {
      ret.write(this.branch_info);
    }
  }

  if (isSetDependencies()) {
    ret.write(", ");
    ret.write("dependencies:");
    if (this.dependencies == null) {
      ret.write("null");
    } else {
      ret.write(this.dependencies);
    }
  }

  ret.write(")");

  return ret.toString();
}