net.sf.dynamicreports.report.constant
Enum Evaluation

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

public enum Evaluation
extends Enum<Evaluation>

Author:
Ricardo Mariaca (r.mariaca@dynamicreports.org)

Enum Constant Summary
BEFORE_GROUP
           
COLUMN
          A constant specifying that an expression should be evaluated after each column is filled.
FIRST_GROUP
           
GROUP
          A constant specifying that an expression should be evaluated after each group break.
LAST_GROUP
           
NONE
           
PAGE
          A constant specifying that an expression should be evaluated after each page is filled.
REPORT
          A constant specifying that an expression should be evaluated at the end of the filling process.
 
Method Summary
static Evaluation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Evaluation[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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 Detail

values

public static Evaluation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Evaluation c : Evaluation.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Evaluation 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


Copyright © 2010-2014. All Rights Reserved.