* Creates a new <code>BinaryDataReader</code> that reads binary data in
* little-endian from the provided <code>InputStream</code>.
* @param in The <code>InputStream</code> to read from.
*/
public static BinaryDataReader littleEndian(InputStream in) {
return new BinaryDataReader(new LittleEndianDataInputStream(in));
}