public enum EvaluationTimeEnum extends Enum<EvaluationTimeEnum> implements JREnum
Enum Constant and Description |
---|
AUTO
Evaluation time indicating that each variable participating in the expression
should be evaluated at a time decided by the engine.
|
BAND
The element will be evaluated at band end.
|
COLUMN
A constant specifying that an expression should be evaluated after each column is filled.
|
GROUP
A constant specifying that an expression should be evaluated after each group break.
|
MASTER
Used for elements that are evaluated at the moment the master report ends.
|
NOW
A constant specifying that an expression should be evaluated at the exact moment in the filling process
when it is encountered.
|
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 EvaluationTimeEnum |
getByName(String name) |
static EvaluationTimeEnum |
getByValue(byte value)
Deprecated.
Used only by deprecated serialized fields.
|
static EvaluationTimeEnum |
getByValue(Byte value)
Deprecated.
Used only by deprecated serialized fields.
|
String |
getName() |
byte |
getValue()
Deprecated.
Used only by deprecated serialized fields.
|
Byte |
getValueByte()
Deprecated.
Used only by deprecated serialized fields.
|
static EvaluationTimeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationTimeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationTimeEnum NOW
public static final EvaluationTimeEnum REPORT
public static final EvaluationTimeEnum PAGE
public static final EvaluationTimeEnum COLUMN
public static final EvaluationTimeEnum GROUP
public static final EvaluationTimeEnum BAND
public static final EvaluationTimeEnum AUTO
public static final EvaluationTimeEnum MASTER
public static EvaluationTimeEnum[] values()
for (EvaluationTimeEnum c : EvaluationTimeEnum.values()) System.out.println(c);
public static EvaluationTimeEnum 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 nullpublic Byte getValueByte()
getValueByte
in interface JREnum
public final byte getValue()
public static EvaluationTimeEnum getByName(String name)
public static EvaluationTimeEnum getByValue(Byte value)
public static EvaluationTimeEnum getByValue(byte value)
Copyright © 2017. All rights reserved.