Package com.mendix.webui.reporting
Interface IDataSetParameter<T>
public interface IDataSetParameter<T>
This interface represents a parameter for a reporting DataSet.
 A parameter is selected in a reporting pane and it gives input for the generation of your report.
- 
Method SummaryModifier and TypeMethodDescriptiongetBegin()Returns the begin value of this range parameter.getEnd()Returns the end value of this range parameter.Returns the value of this parameter.booleanReturns whether this parameter has a single value.booleanReturns whether this range parameter has a begin value.booleanReturns whether this range parameter has a begin value.
- 
Method Details- 
getBeginT getBegin()Returns the begin value of this range parameter.- Returns:
- the begin value of this parameter
 
- 
getEndT getEnd()Returns the end value of this range parameter.- Returns:
- the end value of this parameter
 
- 
mustApplyBeginboolean mustApplyBegin()Returns whether this range parameter has a begin value.- Returns:
- whether this parameter has a begin value
 
- 
mustApplyEndboolean mustApplyEnd()Returns whether this range parameter has a begin value.- Returns:
- whether this parameter has a begin value
 
- 
getSingleValueT getSingleValue()Returns the value of this parameter. This value is only set if this is not a range parameter.- Returns:
- the value of this parameter
 
- 
hasSingleValueboolean hasSingleValue()Returns whether this parameter has a single value. This is only true if this is not a range parameter.- Returns:
- whether this parameter has a single value
 
 
-