Package ca.eandb.util.io

Examples of ca.eandb.util.io.LittleEndianDataInputStream


   * 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));
  }
View Full Code Here

TOP

Related Classes of ca.eandb.util.io.LittleEndianDataInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.