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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getBegin()
Returns the begin value of this range parameter.T
getEnd()
Returns the end value of this range parameter.T
getSingleValue()
Returns the value of this parameter.boolean
hasSingleValue()
Returns whether this parameter has a single value.boolean
mustApplyBegin()
Returns whether this range parameter has a begin value.boolean
mustApplyEnd()
Returns whether this range parameter has a begin value.
-
-
-
Method Detail
-
getBegin
T getBegin()
Returns the begin value of this range parameter.- Returns:
- the begin value of this parameter
-
getEnd
T getEnd()
Returns the end value of this range parameter.- Returns:
- the end value of this parameter
-
mustApplyBegin
boolean mustApplyBegin()
Returns whether this range parameter has a begin value.- Returns:
- whether this parameter has a begin value
-
mustApplyEnd
boolean mustApplyEnd()
Returns whether this range parameter has a begin value.- Returns:
- whether this parameter has a begin value
-
getSingleValue
T 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
-
hasSingleValue
boolean 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
-
-