Class LZ4Stream

All Implemented Interfaces:
Pointer

public class LZ4Stream extends Struct<LZ4Stream>

 union LZ4_stream_t {
     void * table[LZ4_STREAM_MINSIZE];
     {@link LZ4StreamInternal struct LZ4_stream_t_internal} internal_donotuse;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TABLE

      public static final int TABLE
      The struct member offsets.
    • INTERNAL_DONOTUSE

      public static final int INTERNAL_DONOTUSE
      The struct member offsets.
  • Constructor Details

    • LZ4Stream

      public LZ4Stream(ByteBuffer container)
      Creates a LZ4Stream instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

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

  • Method Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<LZ4Stream>
    • table

      public PointerBuffer table()
      Returns:
      a PointerBuffer view of the table field.
    • table

      public long table(int index)
      Returns:
      the value at the specified index of the table field.
    • internal_donotuse

      public LZ4StreamInternal internal_donotuse()
      Returns:
      a LZ4StreamInternal view of the internal_donotuse field.
    • create

      public static LZ4Stream create(long address)
      Returns a new LZ4Stream instance for the specified memory address.
    • createSafe

      public static @Nullable LZ4Stream createSafe(long address)
      Like create, but returns null if address is NULL.
    • create

      public static LZ4Stream.Buffer create(long address, int capacity)
      Create a LZ4Stream.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable LZ4Stream.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • ntable

      public static PointerBuffer ntable(long struct)
      Unsafe version of table().
    • ntable

      public static long ntable(long struct, int index)
      Unsafe version of table.
    • ninternal_donotuse

      public static LZ4StreamInternal ninternal_donotuse(long struct)
      Unsafe version of internal_donotuse().