package gov.nasa.gsfc.spdf.cdfj; /** * Time series specification. TimeSeries objects are returned by a subset of * CDFReader methods, such as those that specify a TimeInstantModel. */ public interface TimeSeries { /** * Returns times according to the * {@link TimeInstantModel time instant model} * returned by {@link #getTimeInstantModel() getTimeInstantModel()}. * @see CDFReader#timeModelInstance() */ public double[] getTimes() throws CDFException.ReaderError; /** * Returns values of the variable at times returned by getTimes(). * @return