kipedia.org/wiki/Endianness">Endianness page".
On-wire representation
Encoding of the value 67305985
Big-Endian variant: 0000 0100 0000 0011 0000 0010 0000 0001 ‾‾‾‾↓‾‾‾‾ ‾‾‾‾↓‾‾‾‾ ‾‾‾‾↓‾‾‾‾ ‾‾‾‾↓‾‾‾‾ 4 3 2 1 // 4·224 + 3·216 + 2·28 + 1·20 = 67305985 Little-Endian variant: 0000 0001 0000 0010 0000 0011 0000 0100 ‾‾‾‾↓‾‾‾‾ ‾‾‾‾↓‾‾‾‾ ‾‾‾‾↓‾‾‾‾ ‾‾‾‾↓‾‾‾‾ 1 2 3 4 // 1·20 + 2·28 + 3·216 + 4·224 = 67305985 n.b. This class doesn't have any dependency against Apache Thrift or any other library in order to provide this convenient integer serialization module to any software using FramedMINA.
@author
Apache MINA Project