Enum CalculationEnum

java.lang.Object
java.lang.Enum<CalculationEnum>
net.sf.jasperreports.engine.type.CalculationEnum
All Implemented Interfaces:
Serializable, Comparable<CalculationEnum>, java.lang.constant.Constable, NamedEnum

public enum CalculationEnum extends Enum<CalculationEnum> implements NamedEnum
Author:
Sanda Zaharia (shertage@users.sourceforge.net)
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The value is obtained by calculating the average for the series of values obtained by evaluating the variable's expression for each record in the data source.
    The value is calculated by counting the non-null values of the variable expression with every iteration in the data source.
    The value is calculated by counting the distinct non-null values of the variable expression with every iteration in the data source.
    The variable keeps the first value and does not increment it on subsequent iterations.
    The value of the variable represents the highest in the series of values obtained by evaluating the variable's expression for each data source record.
    The value of the variable represents the lowest in the series of values obtained by evaluating the variable's expression for each data source record.
    The value is calculated by simply evaluating the variable expression.
    The value is obtained by calculating the standard deviation for the series of values returned by evaluating the variable's expression.
    The value is calculated by summing up the values returned by the variable's expression.
    The value is not calculated by JasperReports.
    The value is obtained by calculating the variance for the series of values returned by evaluating the variable's expression.
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
     
     
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • NOTHING

      public static final CalculationEnum NOTHING
      The value is calculated by simply evaluating the variable expression.
    • COUNT

      public static final CalculationEnum COUNT
      The value is calculated by counting the non-null values of the variable expression with every iteration in the data source. The count variable must be numeric, but the variable expression needs not, since its value is not important. On the other hand, the initial value expression must be numeric since it will be the count variable initial value.
    • SUM

      public static final CalculationEnum SUM
      The value is calculated by summing up the values returned by the variable's expression. Both the main expression and initial expression must have numeric type.
    • AVERAGE

      public static final CalculationEnum AVERAGE
      The value is obtained by calculating the average for the series of values obtained by evaluating the variable's expression for each record in the data source. Both the main expression and initial expression must have numeric type.

      In order to calculate the average, the engine creates behind the scenes a helper report variable that calculates the sum of the values and uses it to calculate the average for those values. This helper sum variable gets its name from the corresponding average variable suffixed with "_SUM" sequence. This helper variable can be used in other report expressions just like any normal variable.

    • LOWEST

      public static final CalculationEnum LOWEST
      The value of the variable represents the lowest in the series of values obtained by evaluating the variable's expression for each data source record.
    • HIGHEST

      public static final CalculationEnum HIGHEST
      The value of the variable represents the highest in the series of values obtained by evaluating the variable's expression for each data source record.
    • STANDARD_DEVIATION

      public static final CalculationEnum STANDARD_DEVIATION
      The value is obtained by calculating the standard deviation for the series of values returned by evaluating the variable's expression.

      Just like for the variables that calculate the average, the engine creates and uses helper report variables for first obtaining the sum and the count that correspond to your current series of values. The name for those helper variables that are created behind the scenes is obtained by suffixing the user variable with the "_SUM" or "_COUNT" suffix and they can be used in other report expressions like any other report variable.

      For variables that calculate the standard deviation, there is always a helper variable present, that first calculates the variance for the series of values and it has the "_VARIANCE" suffix added to its name.

    • VARIANCE

      public static final CalculationEnum VARIANCE
      The value is obtained by calculating the variance for the series of values returned by evaluating the variable's expression.
    • SYSTEM

      public static final CalculationEnum SYSTEM
      The value is not calculated by JasperReports. The user must calculate the value of the variable, almost certainly using the scriptlets functionality. For this type of calculation, the only thing the engine does is to conserve the value users have calculated, from one iteration in the data source to the next.
    • FIRST

      public static final CalculationEnum FIRST
      The variable keeps the first value and does not increment it on subsequent iterations.
    • DISTINCT_COUNT

      public static final CalculationEnum DISTINCT_COUNT
      The value is calculated by counting the distinct non-null values of the variable expression with every iteration in the data source. The count variable must be numeric, but the variable expression needs not, since its value is not important. On the other hand, the initial value expression must be numeric since it will be the count variable initial value.
  • Method Details

    • values

      public static CalculationEnum[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CalculationEnum valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()
      Specified by:
      getName in interface NamedEnum
    • getByName

      public static CalculationEnum getByName(String name)
    • getValueOrDefault

      public static CalculationEnum getValueOrDefault(CalculationEnum value)
    • getDefault

      public CalculationEnum getDefault()
      Specified by:
      getDefault in interface NamedEnum