All Methods Static Methods Instance Methods Concrete Methods
Modifier and Type |
Method and Description |
TrafficSeries |
addSyntheticMonitoringTrace(TrafficSeries.FITTINGTYPE type,
Date initialDate,
double intervalBetweenSamplesInSeconds,
int numberOfSamples,
double initialTraffic,
double growthFactorPerYear,
double noiseRelativeTypicalDeviationRespectToAverage) |
TrafficSeries |
addValue(Date date,
Double val) |
TrafficSeries |
addValues(Collection<Date> dates,
Collection<Double> values) |
TrafficSeries |
addValues(Collection<Pair<Date,Double>> pairs) |
TrafficSeries |
addValues(SortedMap<Date,Double> values) |
static TrafficSeries |
createFromStringList(List<String> stringList) |
static TrafficSeries |
createFromValuesAndInterval(Date initialTime,
long intervalInMiliseconds,
double[] values) |
boolean |
equals(Object obj) |
TrafficSeries |
getCopy() |
SortedSet<Date> |
getDatesWithValue() |
Date |
getFirstDate() |
TrafficSeries.TrafficPredictor |
getFunctionPredictionSoProbSubestimationIsBounded(TrafficSeries.FITTINGTYPE fittingType) |
Date |
getLastDate() |
Double |
getPredictionSoProbSubestimationIsBounded(TrafficSeries.FITTINGTYPE fittingType,
Date d,
double probSubestimation) |
int |
getSize() |
Double |
getValueOrInterpolation(Date d) |
Double |
getValueOrNull(Date d) |
SortedMap<Date,Double> |
getValues() |
int |
hashCode() |
boolean |
hasValue(Date d) |
static void |
main(String[] args) |
TrafficSeries |
removeAllValues() |
TrafficSeries |
removeAllValuesAfterOrEqual(Date d) |
TrafficSeries |
removeAllValuesBeforeOrEqual(Date d) |
TrafficSeries |
removeValue(Date date) |
List<String> |
toStringList() |