public interface FlowableFunctionDelegate
| Modifier and Type | Method and Description |
|---|---|
Method |
functionMethod()
Returns the method that is invoked by JUEL.
|
String |
localName()
The name of the method when used in an expression, like the second part of ${prefix:method()}.
|
default Collection<String> |
localNames()
All the names of the method when used in an expression, like the second part of ${prefix:method()}.
|
String |
prefix()
The prefix of the method when used in an expression, like the first part of ${prefix:method()}.
|
default Collection<String> |
prefixes()
All the prefixes of the method when used in an expression.
|
String prefix()
FlowableFunctionDelegate instance.default Collection<String> prefixes()
${prefix:method()} or {$code ${alternativePrefix:method()}}.
Will be used to match the text of the expression to the actual FlowableFunctionDelegate instance.String localName()
FlowableFunctionDelegate instance.default Collection<String> localNames()
${prefix:method()} or ${prefix:alternativeMethod()}.
Will be used to match the text of the expression to the actual FlowableFunctionDelegate instance.Method functionMethod()
Copyright © 2021 Flowable. All rights reserved.