
li.rudin.mavenjs.charting.result.SeriesEntry Maven / Gradle / Ivy
The newest version!
package li.rudin.mavenjs.charting.result;
public class SeriesEntry
{
public SeriesEntry(long time, Double value)
{
this.time = time;
this.setValue(value);
}
public SeriesEntry(long time, Double value, Double min, Double max)
{
this.time = time;
this.setValue(value);
this.setMin(min);
this.setMax(max);
}
public long getTime()
{
return time;
}
public Double getMin()
{
return min;
}
public void setMin(Double min)
{
this.min = min;
}
public Double getValue()
{
return value;
}
public void setValue(Double value)
{
this.value = value;
}
public Double getMax()
{
return max;
}
public void setMax(Double max)
{
this.max = max;
}
private final long time;
private Double value, min, max;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy