Class LZ4FDecompressOptions

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

@NativeType("struct LZ4F_decompressOptions_t") public class LZ4FDecompressOptions extends Struct<LZ4FDecompressOptions> implements NativeResource
struct LZ4F_decompressOptions_t {
    unsigned stableDst;
    unsigned skipChecksums;
    unsigned reserved1;
    unsigned reserved0;
}
  • Field Details

    • SIZEOF

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

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

      public static final int STABLEDST
      The struct member offsets.
    • SKIPCHECKSUMS

      public static final int SKIPCHECKSUMS
      The struct member offsets.
    • RESERVED1

      public static final int RESERVED1
      The struct member offsets.
    • RESERVED0

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

    • LZ4FDecompressOptions

      public LZ4FDecompressOptions(ByteBuffer container)
      Creates a LZ4FDecompressOptions 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