com.github.luben.zstd.EndDirective Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zstd-jni Show documentation
Show all versions of zstd-jni Show documentation
JNI bindings for Zstd native library that provides fast and high compression lossless algorithm for Java and all JVM languages.
package com.github.luben.zstd;
/** Enum that expresses desired flushing for a streaming compression call.
*
* @see ZstdCompressCtx#compressDirectByteBufferStream
*/
public enum EndDirective {
CONTINUE(0),
FLUSH(1),
END(2);
private final int value;
private EndDirective(int value) {
this.value = value;
}
int value() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy