Package org.camunda.bpm.impl.juel
Enum Class Builder.Feature
- All Implemented Interfaces:
Serializable
,Comparable<Builder.Feature>
,Constable
- Enclosing class:
- Builder
Feature enumeration type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMethod invocations as in${foo.bar(1)}
as specified in JSR 245, maintenance release 2.For some reason we don't understand, the specification does not allow to resolvenull
property values.Allow for use of Java 5 varargs in function calls. -
Method Summary
Modifier and TypeMethodDescriptionstatic Builder.Feature
Returns the enum constant of this class with the specified name.static Builder.Feature[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
METHOD_INVOCATIONS
Method invocations as in${foo.bar(1)}
as specified in JSR 245, maintenance release 2. The method to be invoked is resolved at evaluation time by callingELResolver.invoke(jakarta.el.ELContext, Object, Object, Class[], Object[])
. -
NULL_PROPERTIES
For some reason we don't understand, the specification does not allow to resolvenull
property values. E.g.${map[key]}
will always returnnull
ifkey
evaluates tonull
. Enabling this feature will allow JUEL to passnull
to the property resolvers just like any other property value. -
VARARGS
Allow for use of Java 5 varargs in function calls.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-