|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Evaluation>
net.sf.dynamicreports.report.constant.Evaluation
public enum Evaluation
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 |
---|
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
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |