com.businessobjects.rebean.wi
Interface TrackNumericDataOption

All Superinterfaces:
TrackDataOption

public interface TrackNumericDataOption
extends TrackDataOption

The TrackNumericDataOption interface represents the specialization for increasing/decreasing changes.

Since:
12.0

Method Summary
 void applyThreshold(boolean apply)
          Allows the user to specify if the threshold is applied or not.
 double getThreshold()
          Gets the threshold over/below which the data has to be shown increasing/decreasing.
 boolean isThresholdApplied()
          Allows to know if the threshold is take into account in the differences evaluation process.
 void setThreshold(double value)
          Sets the threshold over/below which the data has to be shown increasing/decreasing
 
Methods inherited from interface com.businessobjects.rebean.wi.TrackDataOption
getDecoration, isActive, showChanges
 

Method Detail

getThreshold

double getThreshold()
Gets the threshold over/below which the data has to be shown increasing/decreasing.

Returns:
the threshold over/below which the data has to be shown increasing/decreasing

setThreshold

void setThreshold(double value)
Sets the threshold over/below which the data has to be shown increasing/decreasing

Parameters:
value - the new threshold.

applyThreshold

void applyThreshold(boolean apply)
Allows the user to specify if the threshold is applied or not. If true, the server must take that threshold in account during the evaluation of changes.

Parameters:
apply - If true, the server must take into account the threshold. Otherwise it shows all increases/decreases changes.

isThresholdApplied

boolean isThresholdApplied()
Allows to know if the threshold is take into account in the differences evaluation process.

Returns:
true, if the server use it.