Class LZ4HCCCtxInternal.Buffer

All Implemented Interfaces:
Iterable<LZ4HCCCtxInternal>, Pointer
Enclosing class:
LZ4HCCCtxInternal

public static class LZ4HCCCtxInternal.Buffer extends StructBuffer<LZ4HCCCtxInternal, LZ4HCCCtxInternal.Buffer>
An array of LZ4HCCCtxInternal structs.
  • Constructor Details

    • Buffer

      public Buffer(ByteBuffer container)
      Creates a new LZ4HCCCtxInternal.Buffer instance backed by the specified container.

      Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by LZ4HCCCtxInternal.SIZEOF, and its mark will be undefined.

      The created buffer instance holds a strong reference to the container object.

    • Buffer

      public Buffer(long address, int cap)
  • Method Details

    • hashTable

      @NativeType("LZ4_u32[LZ4HC_HASHTABLESIZE]") public IntBuffer hashTable()
      Returns:
      a IntBuffer view of the hashTable field.
    • hashTable

      @NativeType("LZ4_u32") public int hashTable(int index)
      Returns:
      the value at the specified index of the hashTable field.
    • chainTable

      @NativeType("LZ4_u16[LZ4HC_MAXD]") public ShortBuffer chainTable()
      Returns:
      a ShortBuffer view of the chainTable field.
    • chainTable

      @NativeType("LZ4_u16") public short chainTable(int index)
      Returns:
      the value at the specified index of the chainTable field.
    • end

      @NativeType("LZ4_byte const *") public ByteBuffer end(int capacity)
      Returns:
      a ByteBuffer view of the data pointed to by the end field.
    • prefixStart

      @NativeType("LZ4_byte const *") public ByteBuffer prefixStart(int capacity)
      Returns:
      a ByteBuffer view of the data pointed to by the prefixStart field.
    • dictStart

      @NativeType("LZ4_byte const *") public ByteBuffer dictStart(int capacity)
      Returns:
      a ByteBuffer view of the data pointed to by the dictStart field.
    • dictLimit

      @NativeType("LZ4_u32") public int dictLimit()
      Returns:
      the value of the dictLimit field.
    • lowLimit

      @NativeType("LZ4_u32") public int lowLimit()
      Returns:
      the value of the lowLimit field.
    • nextToUpdate

      @NativeType("LZ4_u32") public int nextToUpdate()
      Returns:
      the value of the nextToUpdate field.
    • compressionLevel

      public short compressionLevel()
      Returns:
      the value of the compressionLevel field.
    • favorDecSpeed

      @NativeType("LZ4_i8") public byte favorDecSpeed()
      Returns:
      the value of the favorDecSpeed field.
    • dirty

      @NativeType("LZ4_i8") public byte dirty()
      Returns:
      the value of the dirty field.
    • dictCtx

      @NativeType("LZ4HC_CCtx_internal * const") public LZ4HCCCtxInternal dictCtx()
      Returns:
      a LZ4HCCCtxInternal view of the struct pointed to by the dictCtx field.