![JAR search and dependency download from the Maven repository](/logo.png)
com.bq.oss.lib.queries.request.CountResult Maven / Gradle / Ivy
package com.bq.oss.lib.queries.request;
/**
* @author Rubén Carrasco
*
*/
public class CountResult implements AggregationResult {
private long count;
public CountResult() {
}
public CountResult(long count) {
this.count = count;
}
public long getCount() {
return count;
}
public void setCount(long count) {
this.count = count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy