Class ByteArrayView

java.lang.Object
org.graalvm.shadowed.org.tukaani.xz.common.ByteArrayView

public final class ByteArrayView extends Object
  • Field Details

    • ALIGN_SHORT

      public static final int ALIGN_SHORT
    • ALIGN_INT

      public static final int ALIGN_INT
    • ALIGN_LONG

      public static final int ALIGN_LONG
  • Method Details

    • getShortBE

      public static short getShortBE(byte[] buf, int index)
    • getShortLE

      public static short getShortLE(byte[] buf, int index)
    • getIntBE

      public static int getIntBE(byte[] buf, int index)
    • getIntLE

      public static int getIntLE(byte[] buf, int index)
    • getLongBE

      public static long getLongBE(byte[] buf, int index)
    • getLongLE

      public static long getLongLE(byte[] buf, int index)
    • setShortBE

      public static void setShortBE(byte[] buf, int index, short value)
    • setShortLE

      public static void setShortLE(byte[] buf, int index, short value)
    • setIntBE

      public static void setIntBE(byte[] buf, int index, int value)
    • setIntLE

      public static void setIntLE(byte[] buf, int index, int value)
    • setLongBE

      public static void setLongBE(byte[] buf, int index, long value)
    • setLongLE

      public static void setLongLE(byte[] buf, int index, long value)