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

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

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

public class TermsResult extends AggregationResult {
    private final Iterable buckets;

    public TermsResult(Iterable buckets) {
        this.buckets = buckets;
    }

    public Iterable getBuckets() {
        return buckets;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy