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

apoc.result.ByteArrayResult Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
package apoc.result;

public class ByteArrayResult {
    public final static ByteArrayResult NULL = new ByteArrayResult(null);

    public final byte[] value;

    public ByteArrayResult(byte[] value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy