public String toString()

in initializr-generator/src/main/java/io/spring/initializr/metadata/BillOfMaterials.java [212:225]


	public String toString() {
		return "BillOfMaterials ["
				+ ((this.groupId != null) ? "groupId=" + this.groupId + ", " : "")
				+ ((this.artifactId != null) ? "artifactId=" + this.artifactId + ", "
						: "")
				+ ((this.version != null) ? "version=" + this.version + ", " : "")
				+ ((this.versionProperty != null)
						? "versionProperty=" + this.versionProperty + ", " : "")
				+ ((this.order != null) ? "order=" + this.order + ", " : "")
				+ ((this.additionalBoms != null)
						? "additionalBoms=" + this.additionalBoms + ", " : "")
				+ ((this.repositories != null) ? "repositories=" + this.repositories : "")
				+ "]";
	}