|
|||||||||
| 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>
de.odysseus.el.tree.impl.Builder.Feature
public static enum Builder.Feature
Feature enumeration type.
| Enum Constant Summary | |
|---|---|
METHOD_INVOCATIONS
Method invocations as in ${foo.bar(1)} are a JUEL extension. |
|
NULL_PROPERTIES
For some reason we don't understand, the specification does not allow to resolve null property values. |
|
| Method Summary | |
|---|---|
static Builder.Feature |
valueOf(java.lang.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're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Builder.Feature METHOD_INVOCATIONS
${foo.bar(1)} are a JUEL extension.
The method to be invoked is resolved at evaluation just like properties. That is,
a specialized resolver will have to be provided at evaluation time.
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.
| Method Detail |
|---|
public static final Builder.Feature[] values()
for(Builder.Feature c : Builder.Feature.values())
System.out.println(c);
public static Builder.Feature valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
Copyright © 2006, 2007 Odysseus Software GmbH. | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||