Enum Class Evaluation

java.lang.Object
java.lang.Enum<Evaluation>
net.sf.dynamicreports.report.constant.Evaluation
All Implemented Interfaces:
Serializable, Comparable<Evaluation>, Constable

public enum Evaluation extends Enum<Evaluation>

Evaluation class.

Author:
Ricardo Mariaca
  • Enum Constant Details

    • NONE

      public static final Evaluation NONE
    • REPORT

      public static final Evaluation REPORT
      A constant specifying that an expression should be evaluated at the end of the filling process.
    • PAGE

      public static final Evaluation PAGE
      A constant specifying that an expression should be evaluated after each page is filled.
    • COLUMN

      public static final Evaluation COLUMN
      A constant specifying that an expression should be evaluated after each column is filled.
    • GROUP

      public static final Evaluation GROUP
      A constant specifying that an expression should be evaluated after each group break.
    • FIRST_GROUP

      public static final Evaluation FIRST_GROUP
    • BEFORE_GROUP

      public static final Evaluation BEFORE_GROUP
    • LAST_GROUP

      public static final Evaluation LAST_GROUP
  • Method Details

    • values

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

      public static Evaluation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null