Class ZstdConstants
- java.lang.Object
-
- org.apache.commons.compress.compressors.zstandard.ZstdConstants
-
public class ZstdConstants extends java.lang.Object
Zstd constants.- Since:
- 1.28.0
-
-
Field Summary
Fields Modifier and Type Field Description static intZSTD_CHAINLOG_MAXMaximum chain log value.static intZSTD_CHAINLOG_MINMinimum chain log value.static intZSTD_CLEVEL_DEFAULTDefault compression level.static intZSTD_CLEVEL_MAXMaximum compression level.static intZSTD_CLEVEL_MINMinimum compression level.static intZSTD_HASHLOG_MAXMaximum hash log value.static intZSTD_HASHLOG_MINMinimum hash log value.static intZSTD_MINMATCH_MAXZSTD_MINMATCH_MAX= 7.static intZSTD_MINMATCH_MINZSTD_MINMATCH_MAX= 3.static intZSTD_SEARCHLOG_MAXMaximum search log value.static intZSTD_SEARCHLOG_MINMinimum search log value.static intZSTD_WINDOWLOG_LIMIT_DEFAULTZSTD_WINDOWLOG_LIMIT_DEFAULT= 27.static intZSTD_WINDOWLOG_MAXMaximum window log value.static intZSTD_WINDOWLOG_MINMinimum window log value.
-
Constructor Summary
Constructors Constructor Description ZstdConstants()
-
-
-
Field Detail
-
ZSTD_CHAINLOG_MAX
public static final int ZSTD_CHAINLOG_MAX
Maximum chain log value.This constant name matches the name in the C header file.
-
ZSTD_CHAINLOG_MIN
public static final int ZSTD_CHAINLOG_MIN
Minimum chain log value.This constant name matches the name in the C header file.
-
ZSTD_CLEVEL_DEFAULT
public static final int ZSTD_CLEVEL_DEFAULT
Default compression level.This constant name matches the name in the C header file.
-
ZSTD_CLEVEL_MAX
public static final int ZSTD_CLEVEL_MAX
Maximum compression level.This constant name matches the name in the C header file.
-
ZSTD_CLEVEL_MIN
public static final int ZSTD_CLEVEL_MIN
Minimum compression level.This constant name matches the name in the C header file.
-
ZSTD_HASHLOG_MAX
public static final int ZSTD_HASHLOG_MAX
Maximum hash log value.This constant name matches the name in the C header file.
-
ZSTD_HASHLOG_MIN
public static final int ZSTD_HASHLOG_MIN
Minimum hash log value.This constant name matches the name in the C header file.
-
ZSTD_MINMATCH_MAX
public static final int 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.
-
ZSTD_MINMATCH_MIN
public static final int ZSTD_MINMATCH_MIN
ZSTD_MINMATCH_MAX= 3. Only for ZSTD_btopt+, faster strategies are limited to 4.- See Also:
- Constant Field Values
-
ZSTD_SEARCHLOG_MAX
public static final int ZSTD_SEARCHLOG_MAX
Maximum search log value.This constant name matches the name in the C header file.
-
ZSTD_SEARCHLOG_MIN
public static final int ZSTD_SEARCHLOG_MIN
Minimum search log value.This constant name matches the name in the C header file.
-
ZSTD_WINDOWLOG_LIMIT_DEFAULT
public static final int 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.
-
ZSTD_WINDOWLOG_MAX
public static final int ZSTD_WINDOWLOG_MAX
Maximum window log value.This constant name matches the name in the C header file.
-
ZSTD_WINDOWLOG_MIN
public static final int ZSTD_WINDOWLOG_MIN
Minimum window log value.This constant name matches the name in the C header file.
-
-
Constructor Detail
-
ZstdConstants
public ZstdConstants()
-
-