apoc.result.StoreInfoResult 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 StoreInfoResult {
public long logSize;
public long stringStoreSize;
public long arrayStoreSize;
public long relStoreSize;
public long propStoreSize;
public long totalStoreSize;
public long nodeStoreSize;
public StoreInfoResult(
long logSize,
long stringStoreSize,
long arrayStoreSize,
long relStoreSize,
long propStoreSize,
long totalStoreSize,
long nodeStoreSize
) {
this.logSize = logSize;
this.stringStoreSize = stringStoreSize;
this.arrayStoreSize = arrayStoreSize;
this.relStoreSize = relStoreSize;
this.propStoreSize = propStoreSize;
this.totalStoreSize = totalStoreSize;
this.nodeStoreSize = nodeStoreSize;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy