org.frameworkset.elasticsearch.entity.DoubleAggHit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-elasticsearch-rest-entity Show documentation
Show all versions of bboss-elasticsearch-rest-entity Show documentation
bboss elasticsearch client with restful and java api without elasticsearch jar dependended.
package org.frameworkset.elasticsearch.entity;
public class DoubleAggHit extends AggHit{
private Object key;
private Long docCount;
private Double min;
private Double max;
private Double avg;
private Double sum;
public Object getKey() {
return key;
}
public void setKey(Object key) {
this.key = key;
}
public Long getDocCount() {
return docCount;
}
public void setDocCount(Long docCount) {
this.docCount = docCount;
}
public Double getMin() {
return min;
}
public void setMin(Double min) {
this.min = min;
}
public Double getMax() {
return max;
}
public void setMax(Double max) {
this.max = max;
}
public Double getAvg() {
return avg;
}
public void setAvg(Double avg) {
this.avg = avg;
}
public Double getSum() {
return sum;
}
public void setSum(Double sum) {
this.sum = sum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy