in proton-j/src/main/java/org/apache/qpid/proton/codec/messaging/PropertiesType.java [111:141]
public int size()
{
return _impl.getReplyToGroupId() != null
? 13
: _impl.getGroupSequence() != null
? 12
: _impl.getGroupId() != null
? 11
: _impl.getCreationTime() != null
? 10
: _impl.getAbsoluteExpiryTime() != null
? 9
: _impl.getContentEncoding() != null
? 8
: _impl.getContentType() != null
? 7
: _impl.getCorrelationId() != null
? 6
: _impl.getReplyTo() != null
? 5
: _impl.getSubject() != null
? 4
: _impl.getTo() != null
? 3
: _impl.getUserId() != null
? 2
: _impl.getMessageId() != null
? 1
: 0;
}