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

org.securegraph.query.HistogramBucket Maven / Gradle / Ivy

The newest version!
package org.securegraph.query;

public class HistogramBucket {
    public final Object key;
    public final long count;

    public HistogramBucket(Object key, long count) {
        this.key = key;
        this.count = count;
    }

    public Object getKey() {
        return key;
    }

    public long getCount() {
        return count;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy