Package org.lwjgl.util.zstd
Class ZstdErrors
- java.lang.Object
-
- org.lwjgl.util.zstd.ZstdErrors
-
public class ZstdErrors extends java.lang.Object
Native bindings to the experimental error code API of Zstandard (zstd).
-
-
Field Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static long
nZSTD_getErrorString(int code)
static int
ZSTD_getErrorCode(long functionResult)
static java.lang.String
ZSTD_getErrorString(int code)
-
-
-
Field Detail
-
ZSTD_error_no_error, ZSTD_error_GENERIC, ZSTD_error_prefix_unknown, ZSTD_error_version_unsupported, ZSTD_error_frameParameter_unsupported, ZSTD_error_frameParameter_windowTooLarge, ZSTD_error_corruption_detected, ZSTD_error_checksum_wrong, ZSTD_error_dictionary_corrupted, ZSTD_error_dictionary_wrong, ZSTD_error_dictionaryCreation_failed, ZSTD_error_parameter_unsupported, ZSTD_error_parameter_outOfBound, ZSTD_error_tableLog_tooLarge, ZSTD_error_maxSymbolValue_tooLarge, ZSTD_error_maxSymbolValue_tooSmall, ZSTD_error_stage_wrong, ZSTD_error_init_missing, ZSTD_error_memory_allocation, ZSTD_error_workSpace_tooSmall, ZSTD_error_dstSize_tooSmall, ZSTD_error_srcSize_wrong, ZSTD_error_dstBuffer_null, ZSTD_error_frameIndex_tooLarge, ZSTD_error_seekableIO
Error code. (ZSTD_ErrorCode
)Enum values:
error_no_error
error_GENERIC
error_prefix_unknown
error_version_unsupported
error_frameParameter_unsupported
error_frameParameter_windowTooLarge
error_corruption_detected
error_checksum_wrong
error_dictionary_corrupted
error_dictionary_wrong
error_dictionaryCreation_failed
error_parameter_unsupported
error_parameter_outOfBound
error_tableLog_tooLarge
error_maxSymbolValue_tooLarge
error_maxSymbolValue_tooSmall
error_stage_wrong
error_init_missing
error_memory_allocation
error_workSpace_tooSmall
error_dstSize_tooSmall
error_srcSize_wrong
error_dstBuffer_null
error_frameIndex_tooLarge
error_seekableIO
-
-