Package org.camunda.bpm.engine.impl.juel
Enum ExpressionFactoryImpl.Profile
- java.lang.Object
-
- java.lang.Enum<ExpressionFactoryImpl.Profile>
-
- org.camunda.bpm.engine.impl.juel.ExpressionFactoryImpl.Profile
-
- All Implemented Interfaces:
Serializable
,Comparable<ExpressionFactoryImpl.Profile>
- Enclosing class:
- ExpressionFactoryImpl
public static enum ExpressionFactoryImpl.Profile extends Enum<ExpressionFactoryImpl.Profile>
A profile provides a default set of language features that will define the builder's behavior. A profile can be adjusted using thejavax.el.methodInvocations
,javax.el.varArgs
andjavax.el.nullProperties
properties.- Since:
- 2.2
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExpressionFactoryImpl.Profile
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExpressionFactoryImpl.Profile[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JEE5
public static final ExpressionFactoryImpl.Profile JEE5
JEE5: none
-
JEE6
public static final ExpressionFactoryImpl.Profile JEE6
JEE6:javax.el.methodInvocations
,javax.el.varArgs
. This is the default profile.
-
-
Method Detail
-
values
public static ExpressionFactoryImpl.Profile[] 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 (ExpressionFactoryImpl.Profile c : ExpressionFactoryImpl.Profile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpressionFactoryImpl.Profile 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
-
-