Java Utililty Methods Little Endian Convert

List of utility methods to do Little Endian Convert

Description

The list of methods to do Little Endian Convert are organized into topic(s).

Method

intleBAToBeInt(byte[] data)
le BA To Be Int
ByteBuffer buffer = ByteBuffer.wrap(data).order(ByteOrder.LITTLE_ENDIAN);
return buffer.getInt();