io.keen.client.java.result.IntervalResultValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keen-client-api-query Show documentation
Show all versions of keen-client-api-query Show documentation
Java Query Client API for Keen IO
package io.keen.client.java.result;
import io.keen.client.java.AbsoluteTimeframe;
/**
* Models a single piece of a full interval result.
*/
public class IntervalResultValue {
private final AbsoluteTimeframe timeframe;
private final QueryResult result;
public IntervalResultValue(AbsoluteTimeframe timeframe, QueryResult result) {
this.timeframe = timeframe;
this.result = result;
}
public AbsoluteTimeframe getTimeframe() {
return timeframe;
}
public QueryResult getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy