dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Average.java
Denis Molony d09df374dc tidying
2017-03-26 20:16:36 +11:00

49 lines
911 B
Java

package com.bytezone.diskbrowser.visicalc;
import com.bytezone.diskbrowser.visicalc.Cell.CellType;
public class Average extends ValueListFunction
{
public Average (Cell cell, String text)
{
super (cell, text);
assert text.startsWith ("@AVERAGE(") : text;
}
@Override
public void calculate ()
{
double total = 0.0;
int totalChecked = 0;
valueResult = ValueResult.VALID;
for (Value v : list)
{
if (v instanceof Cell && ((Cell) v).isCellType (CellType.EMPTY))
continue;
v.calculate ();
if (v.getValueResult () == ValueResult.NA)
continue;
if (!v.isValid ())
{
valueResult = v.getValueResult ();
return;
}
total += v.getDouble ();
totalChecked++;
}
if (totalChecked == 0)
{
valueResult = ValueResult.ERROR;
return;
}
value = total / totalChecked;
}
}