public enum Evaluation extends Enum<Evaluation>
Evaluation class.
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Evaluation NONE
public static final Evaluation REPORT
public static final Evaluation PAGE
public static final Evaluation COLUMN
public static final Evaluation GROUP
public static final Evaluation FIRST_GROUP
public static final Evaluation BEFORE_GROUP
public static final Evaluation LAST_GROUP
public static Evaluation[] values()
for (Evaluation c : Evaluation.values()) System.out.println(c);
public static Evaluation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2021. All rights reserved.