add min and max
This commit is contained in:
parent
78c02d7dad
commit
c06688d744
@ -88,6 +88,20 @@ public class TimeSeries {
|
|||||||
throw new RuntimeException("Индекс выходит за границы временного ряда");
|
throw new RuntimeException("Индекс выходит за границы временного ряда");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TimeSeriesValue getMax() {
|
||||||
|
if ((values.size() > 0)) {
|
||||||
|
return values.stream().max((o1, o2) -> o1.getValue().compareTo(o2.getValue())).get();
|
||||||
|
}
|
||||||
|
throw new RuntimeException("Временной ряд пустой");
|
||||||
|
}
|
||||||
|
|
||||||
|
public TimeSeriesValue getMin() {
|
||||||
|
if ((values.size() > 0)) {
|
||||||
|
return values.stream().min((o1, o2) -> o1.getValue().compareTo(o2.getValue())).get();
|
||||||
|
}
|
||||||
|
throw new RuntimeException("Временной ряд пустой");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "TimeSeries{" +
|
return "TimeSeries{" +
|
||||||
|
Loading…
Reference in New Issue
Block a user