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