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 Link icon

    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 Link icon

    • getBegin Link icon

      T getBegin()
      Returns the begin value of this range parameter.
      Returns:
      the begin value of this parameter
    • getEnd Link icon

      T getEnd()
      Returns the end value of this range parameter.
      Returns:
      the end value of this parameter
    • mustApplyBegin Link icon

      boolean mustApplyBegin()
      Returns whether this range parameter has a begin value.
      Returns:
      whether this parameter has a begin value
    • mustApplyEnd Link icon

      boolean mustApplyEnd()
      Returns whether this range parameter has a begin value.
      Returns:
      whether this parameter has a begin value
    • getSingleValue Link icon

      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 Link icon

      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