public String toString()

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


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