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

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

The newest version!
package org.securegraph.query;

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

    public TermsBucket(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