Class ZstdConstants
- Since:
- 1.28.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intMaximum chain log value.static final intMinimum chain log value.static final intDefault compression level.static final intMaximum compression level.static final intMinimum compression level.static final intMaximum hash log value.static final intMinimum hash log value.static final intZSTD_MINMATCH_MAX= 7.static final intZSTD_MINMATCH_MAX= 3.static final intMaximum search log value.static final intMinimum search log value.static final intZSTD_WINDOWLOG_LIMIT_DEFAULT= 27.static final intMaximum window log value.static final intMinimum window log value. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
ZSTD_CHAINLOG_MAX
public static final int ZSTD_CHAINLOG_MAXMaximum chain log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CHAINLOG_MIN
public static final int ZSTD_CHAINLOG_MINMinimum chain log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CLEVEL_DEFAULT
public static final int ZSTD_CLEVEL_DEFAULTDefault compression level.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CLEVEL_MAX
public static final int ZSTD_CLEVEL_MAXMaximum compression level.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_CLEVEL_MIN
public static final int ZSTD_CLEVEL_MINMinimum compression level.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_HASHLOG_MAX
public static final int ZSTD_HASHLOG_MAXMaximum hash log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_HASHLOG_MIN
public static final int ZSTD_HASHLOG_MINMinimum hash log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_MINMATCH_MAX
public static final int ZSTD_MINMATCH_MAXZSTD_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
public static final int ZSTD_MINMATCH_MINZSTD_MINMATCH_MAX= 3. Only for ZSTD_btopt+, faster strategies are limited to 4.- See Also:
-
ZSTD_SEARCHLOG_MAX
public static final int ZSTD_SEARCHLOG_MAXMaximum search log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_SEARCHLOG_MIN
public static final int ZSTD_SEARCHLOG_MINMinimum search log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_WINDOWLOG_LIMIT_DEFAULT
public static final int ZSTD_WINDOWLOG_LIMIT_DEFAULTZSTD_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
public static final int ZSTD_WINDOWLOG_MAXMaximum window log value.This constant name matches the name in the C header file.
- See Also:
-
ZSTD_WINDOWLOG_MIN
public static final int ZSTD_WINDOWLOG_MINMinimum window log value.This constant name matches the name in the C header file.
- See Also:
-
-
Constructor Details
-
ZstdConstants
public ZstdConstants()
-