Class BigEndianBinaryReader

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable

    public class BigEndianBinaryReader
    extends BinaryReader
    IO-Optimized binary reader using big-endian integer encoding.
    • Constructor Detail

      • BigEndianBinaryReader

        public BigEndianBinaryReader​(java.io.InputStream in)
    • Method Detail

      • unshift3bytes

        protected int unshift3bytes​(int b1,
                                    int b2,
                                    int b3)
        Specified by:
        unshift3bytes in class BinaryReader
      • unshift4bytes

        protected int unshift4bytes​(int b1,
                                    int b2,
                                    int b3,
                                    int b4)
        Specified by:
        unshift4bytes in class BinaryReader
      • unshift8bytes

        protected long unshift8bytes​(long b1,
                                     long b2,
                                     long b3,
                                     long b4,
                                     long b5,
                                     long b6,
                                     long b7,
                                     long b8)
        Specified by:
        unshift8bytes in class BinaryReader