public static enum Builder.Feature extends java.lang.Enum<Builder.Feature>
Enum Constant and Description |
---|
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. |
Modifier and Type | Method and Description |
---|---|
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 are declared.
|
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.public static 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 namejava.lang.NullPointerException
- if the argument is null