From what I remember in my networking class, here's how the others would work.
Let's assume the following:
Packets sent: 1, 2, 3, 4, 5.
Packets Received: 1, 2, 4.
Unordered Reliable:
A request would be sent for packet 3 and 5. When these arrived, the data would be: 1, 2, 4, 3, 5. (No order, but we make sure we get all of them.)
Unordered Unreliable:
Simply do nothing. We have 1, 2, 4.
Ordered Unreliable:
Now, I'm not sure this exists. However, if it did, it would look like Unordered Unreliable, in all cases but one. Let's say we sent 1, 2, 3, 4, 5. however packets 3 and 5 are lost, and 2 is delayed. We would then have 1, 4, 2. No resend requests are sent, and the packets are out of order.
Make any sense now?
--Chris