All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.keen.client.java.result.IntervalResultValue Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
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