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 long
getUnweightedCaseCount()
Gets the number of cases read so far.Long
getUnweightedTemporalCount()
Gets the number of temporal rows read so far for all cases.double
getWeightedCaseCount()
Gets the number of cases read so far.void
setUnweightedCaseCount(long value)
Gets the number of cases read so far.void
setUnweightedTemporalCount(Long value)
Gets the number of temporal rows read so far for all cases.void
setWeightedCaseCount(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.
-
-