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

    Modifier and Type
    Method
    Description
    Returns the begin value of this range parameter.
    Returns the end value of this range parameter.
    Returns the value of this parameter.
    boolean
    Returns whether this parameter has a single value.
    boolean
    Returns whether this range parameter has a begin value.
    boolean
    Returns whether this range parameter has a begin value.
  • Method Details

    • 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