package spi
- Alphabetic
- Public
- All
Type Members
- abstract class CustomContext extends Context
Override this class if you want to implement a custom Context.
Override this class if you want to implement a custom Context. Call the corresponding super method to handle the default/error case. Typically you will just override one of the dynamic providers (variableProvider, functionProvider)
- trait CustomFunctionProvider extends FunctionProvider
Provides one or more functions which can be used in an expression.
- trait CustomValueMapper extends AnyRef
Transform objects into FEEL types and the other way around.
Transform objects into FEEL types and the other way around.
Multiple mappers are chained and invoked in order of their CustomValueMapper.priority. If one mapper can't transform the object then the next handler of the chain is invoked.
- abstract class JavaCustomValueMapper extends CustomValueMapper
- class JavaFunction extends AnyRef
- abstract class JavaFunctionProvider extends CustomFunctionProvider
Provides one or more functions which can be used in an expression.
- class JavaValueMapper extends CustomValueMapper
Transform FEEL types into common Java objects.
Transform FEEL types into common Java objects. This includes numbers, lists and contexts.
Value Members
- object SpiServiceLoader