|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Logger | |
|---|---|
| org.jbpm.jpdl.el.impl | implementation classes for expression language resolving. |
| Uses of Logger in org.jbpm.jpdl.el.impl |
|---|
| Methods in org.jbpm.jpdl.el.impl with parameters of type Logger | |
|---|---|
boolean |
EqualsOperator.apply(boolean pAreEqual,
Logger pLogger)
Applies the operator given the fact that the two elements are equal. |
boolean |
NotEqualsOperator.apply(boolean pAreEqual,
Logger pLogger)
Applies the operator given the fact that the two elements are equal. |
abstract boolean |
EqualityOperator.apply(boolean pAreEqual,
Logger pLogger)
Applies the operator given the fact that the two elements are equal. |
java.lang.Object |
UnaryMinusOperator.apply(java.lang.Object pValue,
Logger pLogger)
Applies the operator to the given value |
abstract java.lang.Object |
UnaryOperator.apply(java.lang.Object pValue,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
NotOperator.apply(java.lang.Object pValue,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
EmptyOperator.apply(java.lang.Object pValue,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
OrOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
GreaterThanOrEqualsOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
LessThanOrEqualsOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
AndOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
LessThanOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
abstract java.lang.Object |
BinaryOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given pair of values |
java.lang.Object |
RelationalOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
GreaterThanOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
DivideOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
IntegerDivideOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
EqualityOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
ArithmeticOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
java.lang.Object |
ModulusOperator.apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
static java.lang.Object |
Coercions.applyArithmeticOperator(java.lang.Object pLeft,
java.lang.Object pRight,
ArithmeticOperator pOperator,
Logger pLogger)
Performs all of the necessary type conversions, then calls on the appropriate operator. |
static java.lang.Object |
Coercions.applyEqualityOperator(java.lang.Object pLeft,
java.lang.Object pRight,
EqualityOperator pOperator,
Logger pLogger)
Performs all of the necessary type conversions, then calls on the appropriate operator. |
static java.lang.Object |
Coercions.applyRelationalOperator(java.lang.Object pLeft,
java.lang.Object pRight,
RelationalOperator pOperator,
Logger pLogger)
Performs all of the necessary type conversions, then calls on the appropriate operator. |
static java.lang.Object |
Coercions.coerce(java.lang.Object pValue,
java.lang.Class pClass,
Logger pLogger)
Coerces the given value to the specified class. |
static java.lang.Boolean |
Coercions.coerceToBoolean(java.lang.Object pValue,
Logger pLogger)
Coerces a value to a Boolean |
static java.lang.Character |
Coercions.coerceToCharacter(java.lang.Object pValue,
Logger pLogger)
Coerces a value to a Character |
static java.lang.Integer |
Coercions.coerceToInteger(java.lang.Object pValue,
Logger pLogger)
Coerces a value to an Integer, returning null if the coercion isn't possible. |
static java.lang.Object |
Coercions.coerceToObject(java.lang.Object pValue,
java.lang.Class pClass,
Logger pLogger)
Coerces a value to the specified Class that is not covered by any of the above cases |
static java.lang.Number |
Coercions.coerceToPrimitiveNumber(java.lang.Object pValue,
java.lang.Class pClass,
Logger pLogger)
Coerces a value to the given primitive number class |
static java.lang.String |
Coercions.coerceToString(java.lang.Object pValue,
Logger pLogger)
Coerces the specified value to a String |
abstract java.lang.Object |
ValueSuffix.evaluate(java.lang.Object pValue,
VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates the expression in the given context, operating on the given value. |
java.lang.Object |
ArraySuffix.evaluate(java.lang.Object pValue,
VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates the expression in the given context, operating on the given value. |
java.lang.Object |
BinaryOperatorExpression.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates to the literal value |
java.lang.Object |
UnaryOperatorExpression.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates to the literal value |
java.lang.Object |
ComplexValue.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates by evaluating the prefix, then applying the suffixes |
java.lang.Object |
FunctionInvocation.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates by looking up the name in the VariableResolver |
java.lang.Object |
NamedValue.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates by looking up the name in the VariableResolver |
abstract java.lang.Object |
Expression.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates the expression in the given context |
java.lang.String |
ExpressionString.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates the expression string by evaluating each element, converting it to a String (using toString, or "" for null values) and concatenating the results into a single String. |
java.lang.Object |
Literal.evaluate(VariableResolver pResolver,
FunctionMapper functions,
Logger pLogger)
Evaluates to the literal value |
java.lang.Object |
ConditionalExpression.evaluate(VariableResolver vr,
FunctionMapper f,
Logger l)
Evaluates the conditional expression and returns the literal result |
static BeanInfoIndexedProperty |
BeanInfoManager.getBeanInfoIndexedProperty(java.lang.Class pClass,
java.lang.String pIndexedPropertyName,
Logger pLogger)
Returns the BeanInfoIndexedProperty for the specified property in the given class, or null if not found. |
static BeanInfoProperty |
BeanInfoManager.getBeanInfoProperty(java.lang.Class pClass,
java.lang.String pPropertyName,
Logger pLogger)
Returns the BeanInfoProperty for the specified property in the given class, or null if not found. |
static BeanMethod |
BeanInfoManager.getBeanMethod(java.lang.Class pClass,
java.lang.String indexStr,
Logger logger)
|
BeanMethod |
BeanInfoManager.getBeanMethod(java.lang.String pMethodName,
Logger pLogger)
|
java.beans.EventSetDescriptor |
BeanInfoManager.getEventSet(java.lang.String pEventSetName,
Logger pLogger)
Returns the EventSetDescriptor for the given event set name, or null if not found. |
BeanInfoIndexedProperty |
BeanInfoManager.getIndexedProperty(java.lang.String pIndexedPropertyName,
Logger pLogger)
Returns the BeanInfoIndexedProperty for the given property name, or null if not found. |
BeanInfoProperty |
BeanInfoManager.getProperty(java.lang.String pPropertyName,
Logger pLogger)
Returns the BeanInfoProperty for the given property name, or null if not found. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||