Package org.camunda.bpm.impl.juel
Class AstMethod
java.lang.Object
org.camunda.bpm.impl.juel.AstNode
org.camunda.bpm.impl.juel.AstMethod
- All Implemented Interfaces:
 ExpressionNode,Node
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidappendStructure(StringBuilder builder, Bindings bindings) intGet the node's number of children.getChild(int i) Get i'th childjakarta.el.MethodInfogetMethodInfo(Bindings bindings, jakarta.el.ELContext context, Class<?> returnType, Class<?>[] paramTypes) Get method information.Class<?>Get the value type accepted inExpressionNode.setValue(Bindings, ELContext, Object).final jakarta.el.ValueReferencegetValueReference(Bindings bindings, jakarta.el.ELContext context) Get value reference.invoke(Bindings bindings, jakarta.el.ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues) Invoke method.booleanbooleanbooleanbooleanisReadOnly(Bindings bindings, jakarta.el.ELContext context) Determine whetherExpressionNode.setValue(Bindings, ELContext, Object)will throw aPropertyNotWritableException.voidAssign value.toString()Methods inherited from class org.camunda.bpm.impl.juel.AstNode
getStructuralId, getValue 
- 
Constructor Details
- 
AstMethod
 
 - 
 - 
Method Details
- 
isLiteralText
public boolean isLiteralText()- Returns:
 trueif this node represents literal text
 - 
getType
Description copied from interface:ExpressionNodeGet the value type accepted inExpressionNode.setValue(Bindings, ELContext, Object).- Parameters:
 bindings- bindings containing variables and functionscontext- evaluation context- Returns:
 - accepted type or 
nullfor non-lvalue nodes 
 - 
isReadOnly
Description copied from interface:ExpressionNodeDetermine whetherExpressionNode.setValue(Bindings, ELContext, Object)will throw aPropertyNotWritableException.- Parameters:
 bindings- bindings containing variables and functionscontext- evaluation context- Returns:
 trueif this a read-only expression node
 - 
setValue
Description copied from interface:ExpressionNodeAssign value.- Parameters:
 bindings- bindings containing variables and functionscontext- evaluation contextvalue- value to set
 - 
getMethodInfo
public jakarta.el.MethodInfo getMethodInfo(Bindings bindings, jakarta.el.ELContext context, Class<?> returnType, Class<?>[] paramTypes) Description copied from interface:ExpressionNodeGet method information. If this is a non-lvalue node, answernull.- Parameters:
 bindings- bindings containing variables and functionscontext- evaluation contextreturnType- expected method return type (may benullmeaning don't care)paramTypes- expected method argument types- Returns:
 - method information or 
null 
 - 
isLeftValue
public boolean isLeftValue()- Returns:
 trueif the subtree rooted at this node could be used as an lvalue expression (identifier or property sequence with non-literal prefix).
 - 
isMethodInvocation
public boolean isMethodInvocation()- Returns:
 trueif the subtree rooted at this node is a method invocation.
 - 
getValueReference
public final jakarta.el.ValueReference getValueReference(Bindings bindings, jakarta.el.ELContext context) Description copied from interface:ExpressionNodeGet value reference.- Returns:
 - value reference
 
 - 
appendStructure
- Specified by:
 appendStructurein classAstNode
 - 
eval
 - 
invoke
public Object invoke(Bindings bindings, jakarta.el.ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues) Description copied from interface:ExpressionNodeInvoke method.- Parameters:
 bindings- bindings containing variables and functionscontext- evaluation contextreturnType- expected method return type (may benullmeaning don't care)paramTypes- expected method argument typesparamValues- parameter values- Returns:
 - result of the method invocation
 
 - 
getCardinality
public int getCardinality()Description copied from interface:NodeGet the node's number of children. - 
getChild
Description copied from interface:NodeGet i'th child - 
toString
 
 -