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

apoc.result.StoreInfoResult Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
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