org.epics.graphene.rrdtool.TimeSeries Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphene-rrdtool Show documentation
Show all versions of graphene-rrdtool Show documentation
Graphene bindings for rrdtool data.
/**
* Copyright (C) 2012 University of Michigan
* All rights reserved. Use is subject to license terms.
*/
package org.epics.graphene.rrdtool;
import java.util.List;
import java.util.Map;
import org.epics.util.array.ListDouble;
import org.epics.util.time.Timestamp;
/**
*
* @author carcassi
*/
public class TimeSeries {
private List time;
private ListDouble values;
public TimeSeries(List time, ListDouble values) {
this.time = time;
this.values = values;
}
public List getTime() {
return time;
}
public ListDouble getValues() {
return values;
}
}