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

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

package io.keen.client.java.result;

import java.util.Collections;
import java.util.List;

/**
 * 

IntervalResult is for if Interval properties were specified in the query. * * @author claireyoung * @since 1.0.0, 07/06/15 */ public class IntervalResult extends QueryResult { private final List results; /** * @param results the result List of IntervalResultValues */ public IntervalResult(List results) { this.results = Collections.unmodifiableList(results); } /** * @return {@code true} */ @Override public boolean isIntervalResult() { return true; } /** * @return list of IntervalResultValues */ @Override public List getIntervalResults() { return results; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy