in proton-j/src/main/java/org/apache/qpid/proton/codec/messaging/PropertiesType.java [74:109]
public Object get(final int index)
{
switch(index)
{
case 0:
return _impl.getMessageId();
case 1:
return _impl.getUserId();
case 2:
return _impl.getTo();
case 3:
return _impl.getSubject();
case 4:
return _impl.getReplyTo();
case 5:
return _impl.getCorrelationId();
case 6:
return _impl.getContentType();
case 7:
return _impl.getContentEncoding();
case 8:
return _impl.getAbsoluteExpiryTime();
case 9:
return _impl.getCreationTime();
case 10:
return _impl.getGroupId();
case 11:
return _impl.getGroupSequence();
case 12:
return _impl.getReplyToGroupId();
}
throw new IllegalStateException("Unknown index " + index);
}