org.securegraph.query.TermsQueryItem Maven / Gradle / Ivy
The newest version!
package org.securegraph.query;
public class TermsQueryItem {
private final String aggregationName;
private final String fieldName;
public TermsQueryItem(String aggregationName, String fieldName) {
this.aggregationName = aggregationName;
this.fieldName = fieldName;
}
public String getAggregationName() {
return aggregationName;
}
public String getFieldName() {
return fieldName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy