public StringBuilder toString()

in orderbook-core/src/main/java/com/epam/deltix/orderbook/core/impl/MutableOrderBookQuoteL3Impl.java [199:218]


    public StringBuilder toString(final StringBuilder str) {
        str.append("{ \"$type\":  \"Quote\"");
        str.append("{ \"hashcode\": ").append(this.hashCode());
        if (hasPrice()) {
            str.append(", \"price\": ");
            Decimal64Utils.appendTo(getPrice(), str);
        }
        if (hasSize()) {
            str.append(", \"size\": ");
            Decimal64Utils.appendTo(getSize(), str);
        }
        if (hasQuoteId()) {
            str.append(", \"quoteId\": ").append(getQuoteId());
        }
        if (hasExchangeId()) {
            str.append(", \"exchangeId\": ").append(AlphanumericUtils.toString(getExchangeId()));
        }
        str.append("}");
        return str;
    }