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

net.anotheria.moskito.webui.util.offlinecharts.OfflineChartPoint Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.webui.util.offlinecharts;

import java.util.List;

public class OfflineChartPoint {
    /**
     * Values for different chart lines. They are in the same order as the OfflineChartLineDefinition in OfflineChart.
     */
    private List values;
    /**
     * Timestamp as string.
     */
    private String timestampAsString;

    /**
     * Timestamp of this point.
     */
    private long timestamp;

    public List getValues() {
        return values;
    }

    public void setValues(List values) {
        this.values = values;
    }

    public String getTimestampAsString() {
        return timestampAsString;
    }

    public void setTimestampAsString(String timestampAsString) {
        this.timestampAsString = timestampAsString;
    }

    public long getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(long timestamp) {
        this.timestamp = timestamp;
    }

    @Override
    public String toString() {
        return "OfflineChartPoint{" +
                "values=" + values +
                ", timestampAsString='" + timestampAsString + '\'' +
                ", timestamp=" + timestamp +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy