All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.luben.zstd.EndDirective Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy