Package de.gematik.combine.filter.jexl
Enum JexlContextVariables
- java.lang.Object
-
- java.lang.Enum<JexlContextVariables>
-
- de.gematik.combine.filter.jexl.JexlContextVariables
-
- All Implemented Interfaces:
Serializable,Comparable<JexlContextVariables>
public enum JexlContextVariables extends Enum<JexlContextVariables>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_PROPERTIESALL_TAGSCOLUMN_COUNTROW_COUNT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JexlContextVariablesvalueOf(String name)Returns the enum constant of this type with the specified name.static JexlContextVariables[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_COUNT
public static final JexlContextVariables ROW_COUNT
-
COLUMN_COUNT
public static final JexlContextVariables COLUMN_COUNT
-
ALL_TAGS
public static final JexlContextVariables ALL_TAGS
-
ALL_PROPERTIES
public static final JexlContextVariables ALL_PROPERTIES
-
-
Field Detail
-
key
public final String key
-
-
Method Detail
-
values
public static JexlContextVariables[] 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 (JexlContextVariables c : JexlContextVariables.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JexlContextVariables 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
-
-