public String toString()

in sarif/src/main/java/com/jetbrains/qodana/sarif/model/Attachment.java [161:190]


    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(Attachment.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
        sb.append("description");
        sb.append('=');
        sb.append(((this.description == null) ? "<null>" : this.description));
        sb.append(',');
        sb.append("artifactLocation");
        sb.append('=');
        sb.append(((this.artifactLocation == null) ? "<null>" : this.artifactLocation));
        sb.append(',');
        sb.append("regions");
        sb.append('=');
        sb.append(((this.regions == null) ? "<null>" : this.regions));
        sb.append(',');
        sb.append("rectangles");
        sb.append('=');
        sb.append(((this.rectangles == null) ? "<null>" : this.rectangles));
        sb.append(',');
        sb.append("properties");
        sb.append('=');
        sb.append(((this.properties == null) ? "<null>" : this.properties));
        sb.append(',');
        if (sb.charAt((sb.length() - 1)) == ',') {
            sb.setCharAt((sb.length() - 1), ']');
        } else {
            sb.append(']');
        }
        return sb.toString();
    }