public class NumberDelta
extends Object
This class takes successive values and returns the difference or delta between them. Can be used to
get data from jamon from one run and compare it to the next run. The deltal could be graphed for values like
avg, min, max, lastValue etc.
In pseudocode you would graph the difference between this jamon run and the previous one like this.
currentMoniotr.getAvg()-previousMonitor.getAvg();
Or using NumberDelta
NumberDelta delta=new NumberDelta();
delta.setValue(mon.getAvg());
...time elapses...
delta.setValue(mon.getAvg());
System.out.println(delta.getDelta());