public enum PropertyEvaluationTimeEnum extends Enum<PropertyEvaluationTimeEnum> implements NamedEnum
| Enum Constant and Description |
|---|
EARLY
Evaluate the property expression before parameter contributors.
|
LATE
Evaluate the property expression after parameter contributors.
|
REPORT
Evaluate the property expression at the end of the report.
|
| Modifier and Type | Field and Description |
|---|---|
static String |
PROPERTY_EVALUATION_TIME
Provides a default value for the
DatasetPropertyExpression.getEvaluationTime() setting of dataset property expressions and can be set either globally or at dataset level. |
| Modifier and Type | Method and Description |
|---|---|
static PropertyEvaluationTimeEnum |
byName(String name) |
String |
getName() |
static PropertyEvaluationTimeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyEvaluationTimeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyEvaluationTimeEnum EARLY
public static final PropertyEvaluationTimeEnum LATE
public static final PropertyEvaluationTimeEnum REPORT
public static final String PROPERTY_EVALUATION_TIME
DatasetPropertyExpression.getEvaluationTime() setting of dataset property expressions and can be set either globally or at dataset level.public static PropertyEvaluationTimeEnum[] values()
for (PropertyEvaluationTimeEnum c : PropertyEvaluationTimeEnum.values()) System.out.println(c);
public static PropertyEvaluationTimeEnum 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 static PropertyEvaluationTimeEnum byName(String name)
Copyright © 2017. All rights reserved.