|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EvaluationType>
net.sf.jasperreports.engine.EvaluationType
public enum EvaluationType
Determines the field and variables values to be used when evaluating an expression.
| Enum Constant Summary | |
|---|---|
DEFAULT
Use current values when evaluating the expression. |
|
ESTIMATED
Use estimated/future values when evaluating the expression. |
|
OLD
Use old/previous values when evaluating the expression. |
|
| Method Summary | |
|---|---|
byte |
getType()
Returns the corresponding byte value for the evaluation type. |
static EvaluationType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EvaluationType[] |
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 EvaluationType DEFAULT
public static final EvaluationType OLD
public static final EvaluationType ESTIMATED
| Method Detail |
|---|
public static EvaluationType[] values()
for (EvaluationType c : EvaluationType.values()) System.out.println(c);
public static EvaluationType 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 nullpublic byte getType()
JRExpression.EVALUATION_DEFAULT,
JRExpression.EVALUATION_OLD,
JRExpression.EVALUATION_ESTIMATED
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||