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

org.epics.graphene.rrdtool.TimeSeries Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
/**
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy