|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Builder.Feature>
org.camunda.bpm.engine.impl.juel.Builder.Feature
public static enum Builder.Feature
Feature enumeration type.
| Enum Constant Summary | |
|---|---|
METHOD_INVOCATIONS
Method invocations as in ${foo.bar(1)} as specified in JSR 245,
maintenance release 2. |
|
NULL_PROPERTIES
For some reason we don't understand, the specification does not allow to resolve null property values. |
|
VARARGS
Allow for use of Java 5 varargs in function calls. |
|
| Method Summary | |
|---|---|
static Builder.Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Builder.Feature[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Builder.Feature METHOD_INVOCATIONS
${foo.bar(1)} as specified in JSR 245,
maintenance release 2.
The method to be invoked is resolved at evaluation time by calling
ELResolver#invoke(javax.el.ELContext, Object, Object, Class[], Object[]).
public static final Builder.Feature NULL_PROPERTIES
null property values. E.g. ${map[key]} will always
return null if key evaluates to null.
Enabling this feature will allow JUEL to pass null to
the property resolvers just like any other property value.
public static final Builder.Feature VARARGS
| Method Detail |
|---|
public static Builder.Feature[] values()
for (Builder.Feature c : Builder.Feature.values()) System.out.println(c);
public static Builder.Feature valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||