Package com.bayesserver.data
Class DataProgressEventArgs
- java.lang.Object
-
- com.bayesserver.data.DataProgressEventArgs
-
public final class DataProgressEventArgs extends Object
Used to provide progress on how many cases have been read.
-
-
Constructor Summary
Constructors Constructor Description DataProgressEventArgs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetUnweightedCaseCount()Gets the number of cases read so far.LonggetUnweightedTemporalCount()Gets the number of temporal rows read so far for all cases.doublegetWeightedCaseCount()Gets the number of cases read so far.voidsetUnweightedCaseCount(long value)Gets the number of cases read so far.voidsetUnweightedTemporalCount(Long value)Gets the number of temporal rows read so far for all cases.voidsetWeightedCaseCount(double value)Gets the number of cases read so far.
-
-
-
Method Detail
-
getUnweightedCaseCount
public long getUnweightedCaseCount()
Gets the number of cases read so far. The count does not include any weights that may be applied to cases.
-
setUnweightedCaseCount
public void setUnweightedCaseCount(long value)
Gets the number of cases read so far. The count does not include any weights that may be applied to cases.
-
getWeightedCaseCount
public double getWeightedCaseCount()
Gets the number of cases read so far. The count includes any weights that may be applied to cases.
-
setWeightedCaseCount
public void setWeightedCaseCount(double value)
Gets the number of cases read so far. The count includes any weights that may be applied to cases.
-
getUnweightedTemporalCount
public Long getUnweightedTemporalCount()
Gets the number of temporal rows read so far for all cases.
-
setUnweightedTemporalCount
public void setUnweightedTemporalCount(Long value)
Gets the number of temporal rows read so far for all cases.
-
-