apoc.result.ByteArrayResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
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