Class ZstdConstants
- Since:
- 1.28.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Maximum chain log value.static final int
Minimum chain log value.static final int
Default compression level.static final int
Maximum compression level.static final int
Minimum compression level.static final int
Maximum hash log value.static final int
Minimum hash log value.static final int
ZSTD_MINMATCH_MAX
= 7.static final int
ZSTD_MINMATCH_MAX
= 3.static final int
Maximum search log value.static final int
Minimum search log value.static final int
ZSTD_WINDOWLOG_LIMIT_DEFAULT
= 27.static final int
Maximum window log value.static final int
Minimum window log value. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
ZSTD_CHAINLOG_MAX
Maximum chain log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CHAINLOG_MIN
Minimum chain log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CLEVEL_DEFAULT
Default compression level.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CLEVEL_MAX
Maximum compression level.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CLEVEL_MIN
Minimum compression level.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_HASHLOG_MAX
Maximum hash log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_HASHLOG_MIN
Minimum hash log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_MINMATCH_MAX
ZSTD_MINMATCH_MAX
= 7. Only for ZSTD_fast, other strategies are limited to 6.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_MINMATCH_MIN
ZSTD_MINMATCH_MAX
= 3. Only for ZSTD_btopt+, faster strategies are limited to 4.- See Also:
-
ZSTD_SEARCHLOG_MAX
Maximum search log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_SEARCHLOG_MIN
Minimum search log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_WINDOWLOG_LIMIT_DEFAULT
ZSTD_WINDOWLOG_LIMIT_DEFAULT
= 27.By default, the streaming decoder will refuse any frame requiring larger than (in C)
(1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT)
window size, to preserve host's memory from unreasonable requirements.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_WINDOWLOG_MAX
Maximum window log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_WINDOWLOG_MIN
Minimum window log value.This constant name matches the name in the C header file.
- See Also:
-
-
Constructor Details
-
ZstdConstants
public ZstdConstants()
-