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

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

There is a newer version: 4.10.0
Show newest version
package org.vertexium.query;

import java.util.Map;

public class HistogramBucket {
    private final Object key;
    private final long count;
    private final Map nestedResults;

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

    public Object getKey() {
        return key;
    }

    public long getCount() {
        return count;
    }

    public Map getNestedResults() {
        return nestedResults;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy