Package net.sf.jasperreports.compilers
Enum DirectExpressionEvaluation.EvaluationType
- java.lang.Object
-
- java.lang.Enum<DirectExpressionEvaluation.EvaluationType>
-
- net.sf.jasperreports.compilers.DirectExpressionEvaluation.EvaluationType
-
- All Implemented Interfaces:
Serializable
,Comparable<DirectExpressionEvaluation.EvaluationType>
- Enclosing interface:
- DirectExpressionEvaluation
public static enum DirectExpressionEvaluation.EvaluationType extends Enum<DirectExpressionEvaluation.EvaluationType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DirectExpressionEvaluation.EvaluationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DirectExpressionEvaluation.EvaluationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSTANT
public static final DirectExpressionEvaluation.EvaluationType CONSTANT
-
PARAMETER
public static final DirectExpressionEvaluation.EvaluationType PARAMETER
-
FIELD
public static final DirectExpressionEvaluation.EvaluationType FIELD
-
VARIABLE
public static final DirectExpressionEvaluation.EvaluationType VARIABLE
-
RESOURCE
public static final DirectExpressionEvaluation.EvaluationType RESOURCE
-
SIMPLE_TEXT
public static final DirectExpressionEvaluation.EvaluationType SIMPLE_TEXT
-
-
Method Detail
-
values
public static DirectExpressionEvaluation.EvaluationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DirectExpressionEvaluation.EvaluationType c : DirectExpressionEvaluation.EvaluationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DirectExpressionEvaluation.EvaluationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-