in protonj2/src/main/java/org/apache/qpid/protonj2/types/transport/Flow.java [444:458]
public String toString() {
return "Flow{" +
"nextIncomingId=" + (hasNextIncomingId() ? nextIncomingId : "null") +
", incomingWindow=" + (hasIncomingWindow() ? incomingWindow : "null") +
", nextOutgoingId=" + (hasNextOutgoingId() ? nextOutgoingId : "null") +
", outgoingWindow=" + (hasOutgoingWindow() ? outgoingWindow : "null") +
", handle=" + (hasHandle() ? handle : "null") +
", deliveryCount=" + (hasDeliveryCount() ? deliveryCount : "null") +
", linkCredit=" + (hasLinkCredit() ? linkCredit : "null") +
", available=" + (hasAvailable() ? available : "null") +
", drain=" + (hasDrain() ? drain : "null") +
", echo=" + (hasEcho() ? echo : "null") +
", properties=" + properties +
'}';
}