org.camunda.bpm.engine.impl.juel
Enum ExpressionFactoryImpl.Profile

java.lang.Object
  extended by java.lang.Enum<ExpressionFactoryImpl.Profile>
      extended by 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 the javax.el.methodInvocations, javax.el.varArgs and javax.el.nullProperties properties.

Since:
2.2

Enum Constant Summary
JEE5
          JEE5: none
JEE6
          JEE6: javax.el.methodInvocations, javax.el.varArgs.
 
Method Summary
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.
 
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

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 name
NullPointerException - if the argument is null


Copyright © 2016 camunda services GmbH. All rights reserved.